📄 main.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="config.asp"-->
<!--#include file="checklogin.asp"-->
<html>
<head>
<title><%=webname%>后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<script language="JavaScript">
function trim(string)
{
var tmpchar, x, y, result;
x = 0;
tmpchar = string.charAt(x);
while (tmpchar == ' ') {
x ++;
tmpchar = string.charAt(x);
}
y = string.length - 1;
tmpchar = string.charAt(y);
while (tmpchar == ' ') {
y --;
tmpchar = string.charAt (y);
}
if ( x <= y)
result = string.substring(x,y+1);
else
result = "";
return result;
}
</script>
<frameset framespacing="false" border="false" cols="200,*" frameborder="0">
<frame name="left" scrolling="auto" marginwidth="0" marginheight="0" src="left.asp">
<frame name="right" scrolling="auto" src="default.asp">
</frameset>
<noframes>
</noframes>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -