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

bianca
 2012-05-23 05:51
#158489 #158489
User since
2009-09-13
6978 Artikel
BenutzerIn

user image
Versuch es mal ohne body Tags die gehören nämlich nicht hin beim Frameset:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<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">
</frameset>
<noframes>
<p>keine Frames!</p>
</noframes>
</html>
10 print "Hallo"
20 goto 10

View full thread Frameset mit CGI erstellen (IIS Problem)