各位大虾好。我是位新手。想在kj.asp中实现三个框架。分别是上、中、下。想在上框架显示1.asp,中框架显示2.asp,下框架显示3.asp。
我是用Dreamweaver编的。想实现的功能是。当在1.asp中输入真确的用户名和密码并按下登入按钮后,在2.asp中就显示内容。可我编的只显示了代码。没有显示网页内容。我在2.asp和3.asp里面都只放了一张图片。单独执行网页时都可正常显示的。
我的代码如下。希望路过的高手指点。谢谢。
kj.asp的代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>主页</title>
</head><frameset rows="80,*,80" frameborder="no" border="0" framespacing="0">
<frame src="1.asp" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="2.asp" name="mainFrame" id="mainFrame" title="mainFrame" />
<frame src="3.asp" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
2.asp的代码如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<img src="/kuangjia/image/1104467655771.jpg" alt="" />
</body>
</html>
目前还不能正常显示图片。只显示代码。所以其他暂时不贴出来了。等能正常显示了再贴出来请教各位。
[此贴子已经被阳光白雪于2007-4-6 8:50:00编辑过]