有个同学录的框架是这样的.
<!-- #include file="inc/db.inc" -->
<!-- #include file="inc/func.inc" -->
<!--#include file="inc/chkonline.asp"-->
<%call online()%>
<%
userid=session("myuserid")
password=session("mypwd")
if isman(userid,password)=0 then
%>
<script>
alert("你不是管理员,无权进入!");
parent.location.href="javascript:history.back()";
</script>
<%
else%>
<html>
<head>
<title>班级管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<frameset cols="178,*" framespacing="0" border="0" frameborder="0">
<frame name="left" scrolling="no" target="rbottom" src="menu.asp" marginwidth="0" marginheight="0">
<frameset rows="5%,*">
<frame name="rtop" target="rbottom" src="adminato.asp" marginwidth="0" marginheight="0" scrolling="no">
<frame name="rbottom" scrolling="auto" src="notice.asp" marginwidth="0" marginheight="0">
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
<%end if%>
别人能用,不知我的错哪了?