Status und Menüleiste entfernen - baseportal Forum - Web-Anwendungen einfach, schnell, leistungsfähig!
baseportal
English - Deutsch "Es gibt keine dummen Fragen - jeder hat einmal angefangen"

 baseportal-ForumDie aktuellsten 10, 30, 50, 100 Einträge anzeigen.  

 
 Ausgewählter Eintrag: Zur Liste 
    Beitrag von glebe (1 Beitrag) am Mittwoch, 17.September.2003, 14:01. WWW: www.tortech.de
    Status und Menüleiste entfernen

      Hallo zusammen. In nachstehenden Script stellen wir eine Ausgabeseite dar, die sich automatisch in der Größe verändert. Gewollt ist aber auch, dass die Titel- und die Menüleiste ausgeblendet wird - geht das und wie??

      <perl>
      get "Artikelnummer==$artikel","zubehoer";
      

      out "<html>\n";
      out "<head>\n";
      out "<title>$Bezeichnung</title>\n";
      

      ### CSS-Styles ausgeben ###
      out "<style type=\"text/css\"><!--\n";
      out "a:link { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
      out "a:visited { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
      out "a:hover { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:underline; color:#980000; }\n";
      

      out "body { font-family:Verdana; font-size:12px; color:#000000; }\n";
      out "table { font-family:Verdana; font-size:12px; color:#000000; }\n";
      out "--></style>\n";
      

      out "</head>\n";
      out "<body onLoad=\"window.resizeTo(500,600)\">\n";
      

      out "<table style=\"width:100%;\" cellspacing=\"1\" cellpadding=\"2\">\n";

      ### Bezeichnung ###
      out "<tr><td colspan=\"2\" style=\"background:#CCCCCC;\"><b>$Bezeichnung</b></td></tr>\n";
      

      out "<tr>\n";

      ### Bild ###
      out "<td style=\"width:200px; background:#CCCCCC; vertical-align:top;\"><img src=\"http://glebedata2.de/files/$Bild\" width=\"200\"></td>\n";
      

      ### Beschreibung ###
      out "<td style=\"vertical-align:top;\">" . convert_br($Beschreibung) . "</td>\n";
      

      out "</tr>\n";
      out "<tr>\n";
      

      ### Handbuch ###
      out "<td style=\"background:#CCCCCC;\">";
      if($Handbuch ne "") { out "<a href=\"http://glebedata2.de/files/$Handbuch\">Technisches Handbuch</a>"; }
      out "</td>\n";
      

      ### Artikel-Nr. ###
      out "<td>Artikel-Nr.: <b>$Artikelnummer</b></td>\n";
      

      out "</tr>\n";
      out "<tr>\n";
      

      out "<td style=\"background:#CCCCCC;\"></td>\n";

      ### Einzelpreis ###
      out "<td>Einzelpreis: &euro; $Einzelpreis <font size=\"-1\">inkl. MWSt.</font></td>\n";
      

      out "</tr>\n";

      out "</table>\n";
      

      ### Herstellerlogo ###
      if($HerstellerLogo ne "") { out "<br><center><img src=\"http://glebedata2.de/files/$HerstellerLogo\"></center>\n"; }
      

      out "</body>\n";
      out "</html>\n";
      </perl>
      


    Antworten

 Alle Einträge zum Thema: Zur Liste 
    Beitrag von glebe (1 Beitrag) am Mittwoch, 17.September.2003, 14:01. WWW: www.tortech.de
    Status und Menüleiste entfernen

      Hallo zusammen. In nachstehenden Script stellen wir eine Ausgabeseite dar, die sich automatisch in der Größe verändert. Gewollt ist aber auch, dass die Titel- und die Menüleiste ausgeblendet wird - geht das und wie??

      <perl>
      get "Artikelnummer==$artikel","zubehoer";
      

      out "<html>\n";
      out "<head>\n";
      out "<title>$Bezeichnung</title>\n";
      

      ### CSS-Styles ausgeben ###
      out "<style type=\"text/css\"><!--\n";
      out "a:link { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
      out "a:visited { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:none; color:#980000; }\n";
      out "a:hover { font-family:Verdana,Arial,Helvetica; font-size:10pt; font-weight:500; text-decoration:underline; color:#980000; }\n";
      

      out "body { font-family:Verdana; font-size:12px; color:#000000; }\n";
      out "table { font-family:Verdana; font-size:12px; color:#000000; }\n";
      out "--></style>\n";
      

      out "</head>\n";
      out "<body onLoad=\"window.resizeTo(500,600)\">\n";
      

      out "<table style=\"width:100%;\" cellspacing=\"1\" cellpadding=\"2\">\n";

      ### Bezeichnung ###
      out "<tr><td colspan=\"2\" style=\"background:#CCCCCC;\"><b>$Bezeichnung</b></td></tr>\n";
      

      out "<tr>\n";

      ### Bild ###
      out "<td style=\"width:200px; background:#CCCCCC; vertical-align:top;\"><img src=\"http://glebedata2.de/files/$Bild\" width=\"200\"></td>\n";
      

      ### Beschreibung ###
      out "<td style=\"vertical-align:top;\">" . convert_br($Beschreibung) . "</td>\n";
      

      out "</tr>\n";
      out "<tr>\n";
      

      ### Handbuch ###
      out "<td style=\"background:#CCCCCC;\">";
      if($Handbuch ne "") { out "<a href=\"http://glebedata2.de/files/$Handbuch\">Technisches Handbuch</a>"; }
      out "</td>\n";
      

      ### Artikel-Nr. ###
      out "<td>Artikel-Nr.: <b>$Artikelnummer</b></td>\n";
      

      out "</tr>\n";
      out "<tr>\n";
      

      out "<td style=\"background:#CCCCCC;\"></td>\n";

      ### Einzelpreis ###
      out "<td>Einzelpreis: &euro; $Einzelpreis <font size=\"-1\">inkl. MWSt.</font></td>\n";
      

      out "</tr>\n";

      out "</table>\n";
      

      ### Herstellerlogo ###
      if($HerstellerLogo ne "") { out "<br><center><img src=\"http://glebedata2.de/files/$HerstellerLogo\"></center>\n"; }
      

      out "</body>\n";
      out "</html>\n";
      </perl>
      

     Antworten

    Beitrag von Sander (8133 Beiträge) am Mittwoch, 17.September.2003, 14:06.
    Re: Status und Menüleiste entfernen

      dann muß dein fenster per javascript geöffnet werden. du kannst dabei parameter angeben, die zb auch die statusleiste ausblenden.
      die funktion heißt open() - such mal bei selfhtml danach

      Sander

     Antworten


     
 Liste der Einträge von 35100 bis 35250:Einklappen Zur Eingabe 
Neueste Einträge << 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | Neuere Einträge < Zur Eingabe  > Ältere Einträge | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 >> Älteste Einträge


Zurück zur Homepage

© baseportal.de. Alle Rechte vorbehalten. Nutzungsbedingungen



powered in 0.06s by baseportal.de
Erstellen Sie Ihre eigene Web-Datenbank - kostenlos!