📄 ftp_set.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="chkadmin.asp"-->
<!--#include file="config.asp"-->
<%dim sql,rs,FtpSetting
sql="select FtpSetting from Config"
set rs=conn.execute(sql)
FtpSetting=rs(0)
set rs=nothing%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="../style.css" rel="stylesheet" type="text/css">
<STYLE>
BODY {
scrollbar-face-color : #96A2AD;
scrollbar-shadow-color : #96A2AD;
scrollbar-highlight-color : #96A2AD;
scrollbar-3dlight-color : #96A2AD;
scrollbar-darkshadow-color : #96A2AD;
scrollbar-track-color : #CCCCCC;
scrollbar-arrow-color : #FFFFFF;
}
</STYLE>
</head>
<body>
<form name="form1" method="post" action="ftp_set_save.asp">
<table width="300" border="0" align="center" cellpadding="2" cellspacing="0" bgcolor="#EEEEEE">
<tr bgcolor="#708090">
<td align="center" bgcolor="#708090" class="TdBorderB"><font color="#FFFFFF">FTP下载设置</font></td>
</tr>
<tr>
<td class="TdBorderRB">
<textarea name="FtpSetting" cols="44" rows="5" id="FtpSetting"><%=FtpSetting%></textarea></td>
</tr>
<tr>
<td class="TdBorderRB"><p>如果您有FTP服务器提供下载,可以在这里进行设置,当更改FTP密码后就不需要对每个软件再进行修改了。<br>
格式:ftp://用户名:密码@地址/<br>
每个FTP用回车隔开,可设置多个(255个字符内)。 </p>
</td>
</tr>
<tr align="center">
<td align="center">
<%if power(5)="0" then
response.write "<font color=red>您没有FTP下载设置的权限</font> "
else
response.write "<input name='Submit' type='submit' class='button' value=' 提 交 '> "
end if
response.write "<input name='Submit' type='button' class='button' value=' 返 回 ' onclick='javascript:history.back()'>"%> </td>
</tr>
</table>
</form>
</body>
</html>
<%
conn.close
set conn=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -