📄 index.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% Option Explicit %>
<%
'作者: 依星(airen3339@163.com)
'日期:2005.9
dim action
dim VersionAuto,VersionHand
dim ServerName
VersionAuto="1.0.0.1"
VersionHand="1.0.0.1"
action=LCase(request.QueryString("action"))
' ServerName="www.xxxx.com"
ServerName="127.0.0.1" '(本机调试)
if action="auto" then '自动升级
response.Write("#"&VersionAuto&"#http://"&ServerName&"/softwarejnhyw/UpDateAuto/Client.exe#")
response.end
elseif action="hand" then '手工升级
response.Write("#"&VersionHand&"#http://"&ServerName&"/softwarejnhyw/UpDateHand/Client.exe#")
response.end
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -