adminindex.asp

来自「用ASP设计的一个网上问卷系统,用于网上调查问卷系统的实现」· ASP 代码 · 共 26 行

ASP
26
字号
<!--#include file="../include/config.asp"-->
<html>
<head>
<%
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><%=siteName%>-后台管理</title>
</head><frameset rows="63,*,32" cols="*" frameborder="no" border="0" framespacing="0">
  <frame src="AdminIndexTop.asp" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
  <frameset rows="*" cols="177,*" framespacing="0" frameborder="no" border="0">
    <frame src="AdminIndexLeft.asp" name='left' scrolling='yes' noresize='noresize' />
    <frame src="AdminIndexMain.asp" name='right' scrolling='yes' noresize='noresize' />
  </frameset>
  <frame src="AdminIndexBottom.asp" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?