⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user_sort.asp

📁 使用Asp+Access+FSO+Jmail+Servu开发
💻 ASP
字号:
<!--#include file="inc/conn.asp"-->
<!-- #include file="inc/ubbcode.asp" -->
<HTML><HEAD><TITLE>会员等级</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css/admin.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#F6ECE2">
<table width=500 border=0 align="center" cellpadding="0" cellspacing=1 bgcolor="#F6ECE2">
  <tr><td>
<br>
<%
sql="select * from host"
set rs=conn.execute(sql)
usertype=rs("type")
ftp=rs("ftp")
if rs.eof then
response.write "无"
else
do while not rs.eof
if rs("type")="free" then usertype="免费用户"
if rs("type")="vip" then usertype="付费用户"
if rs("ftp")="True" then ftp="√"
if rs("ftp")="False" then ftp="×"
if rs("asp")="True" then asp="√"
if rs("asp")="False" then asp="×"
if rs("domain")="True" then domain="√"
if rs("domain")="False" then domain="×"
response.write "<img src=images/dot.gif> "&rs("name")&"<br>"
response.write "┝用户类型:"&usertype&"<br>"
if rs("type")="vip" then
response.write "┝产品价格:¥"&rs("price")&"元/年<br>"
end if
response.write "┝空间容量:"&rs("space")&"M<br>"
response.write "┝提供域名:"&rs("userurl")&"/yourname<br>"
response.write "┝二级域名:"&domain&"<br>"
response.write "┝详细介绍:"&ubbcode(rs("content"))&"<br>"
response.write "┝FTP权限:"&ftp&"<br>"
response.write "┝ASP权限:"&asp&"<br>"
response.write "┝单个文件大小:≤"&rs("uploadsize")&" K<br><hr size=1>"
rs.movenext
loop
end if
rs.close
set rs=nothing
%>
</td></tr></table>

</body>
</html>

⌨️ 快捷键说明

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