Thread Frameset mit CGI erstellen (IIS Problem) (10 answers)
Opened by ChKrausse at 2012-05-23 00:48

GwenDragon
 2012-05-23 08:41
#158498 #158498
User since
2005-01-17
14548 Artikel
Admin1
[Homepage]
user image
Es geht NICHT mit start_html, weil das auch ein HTML-Element BODY erzeugen will, was im Frameset verboten ist.
Also print verwenden!

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
print <<HTML;
<!DOCTYPE html
        PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
         "http://www.w3.org/TR/html4/frameset.dtd">
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<frameset rows="72,*" border="0" frameborder="no" id="frameset">
                        <frame  name="top"              
                                        src="../frame_top.htm" 
                                        scrolling="no" 
                                        marginwidth="0" 
                                        marginheight="90" 
                                        noresize frameborder="no">
                        <frame  name="bottom"   
                                        src="../sitemap.shtm" 
                                        marginwidth="0" 
                                        marginheight="0" 
                                        frameborder="no">
                <noframes>
                        <body>
                                <p>
                                        Diese Seite verwendet Frames. <br>
                                        Frames werden von Ihrem Browser aber nicht unterst&uumltzt.
                                </p>
                        </body>
                </noframes>
        </frameset>
HTML
die Drachin, Gwendolyn


Unterschiedliche Perl-Versionen auf Windows (fast wie perlbrew) • Meine Perl-Artikel

View full thread Frameset mit CGI erstellen (IIS Problem)