📄 ftppost.asp
字号:
<!--#include file="chkuser.asp"-->
<!--#include file="config.asp"-->
<%
username=request("username")
password=request("password")
email=request("email")
ftpsize=request("ftpsize")
If not conn.Execute("Select * From [ftpuser] where username='"&username&"'" ).eof Then
response.redirect("error.asp?error=ftprname")
Response.end
else
sql="select * from ftpuser"
rs.open sql,conn,1,3
rs.addnew
rs("username")=username
rs("password")=password
rs("email")=email
rs("ftpsize")=ftpsize
rs("ifkt")=False
rs("lock")=False
rs("regdate")=Date()
rs("ktdate")="未开通"
rs.update
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>注册成功</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#F6ECE2" leftmargin="0" topmargin="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="70%">
<tr>
<td align="center">
<fieldset style="padding: 2; width:200; height:120">
<legend><b>注册成功,我们将尽快审核!</b></legend>
<table width="300" height="120" border="0" align=center cellpadding="3" cellspacing="1">
<tr>
<td style="line-height:20px">以下是您的帐号信息:<br>
<li></li>
ftp地址:<%=ftphost%>
<li></li>
用户名:<%=username%>
<li></li>密 码:<%=password%><li></li>空间大小:<%=ftpsize%>M</td>
</tr>
<tr>
<td height="25" align="center"><input name="button" type="button" class="button" onclick="javascript:history.back()" value="返回"></td>
</tr>
</table>
</fieldset></td>
</tr>
</table>
</body>
</html>
<%
rs.close
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -