control.asp

来自「新云cms当用户注册后」· ASP 代码 · 共 41 行

ASP
41
字号
<!--#include file="inc/const.asp"-->
<!--#include file="inc/common.asp"--> 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>控制面板</title>
<style type="text/css">
<!--
body,td,th {
 font-size: 12px;
background:#f1f6fc;
}
a:link {
 color: #666666;
 text-decoration: none;
}
a:visited {
 text-decoration: none;
 color: #666666;
}
a:hover {
 text-decoration: underline;
 color: #FF0000;
}
a:active {
 text-decoration: none;
}
-->
</style>
</head>
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
 
<%If request.cookies(NewAsp.CookiesName)("username")="" then%><a href="/users/login.asp" target=_blank>会员登陆</a> &nbsp;|&nbsp; <img src="/skins/template_3/hd_arrowDown.gif" height="7" width="5" alt="" /><a href="/users/reg.asp" target=_blank>免费注册</a>
<%else
response.write "欢迎光临" &  request.cookies(NewAsp.CookiesName)("username") & ",您还有点数:" & request.cookies(NewAsp.CookiesName)("pointnum") & "点." & "<a href='index.asp' target=_blank>控制面板</a> | <a href='logout.asp' target=_top>退出登陆</a>" 
end if
%>

</body>
</html>

⌨️ 快捷键说明

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