如果用户不经log.htm登陆直接进入log.asp,则转向log.htm要求登陆。
发布网友
发布时间:2022-07-02 14:52
我来回答
共1个回答
热心网友
时间:2023-10-27 19:59
log.asp
<%
dim t1
t1 = trim(request.QueryString("t1"))
if t1 = "" then
response.write("<script>location.href='log.htm';</script>")
response.end
end if
...
...
...
%>