main.asp

来自「一个漂亮的网络工作室源码 后台地址:/admin 用户名:admin 密码」· ASP 代码 · 共 38 行

ASP
38
字号
<!--#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 + =
减小字号Ctrl + -
显示快捷键?