|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以使用微软的activeX使得网页功能无比强大,不过安全性也较差,而且是基于的windows服务器,所以性能稳定性也一般程序上岸页login.asp:
<%
ifrequest.Form.count>0then
session("username")=request("username")
application(session("username"))=session.SessionID
response.Redirect("index.asp")
endif
%>
<formmethod=postaction="">
<inputtype="text"name="username"><inputtype="submit">
</form>
其他必要认证的页面index.asp:
<%
ifapplication(session("username"))=session.SessionIDthen
response.Write("已上岸")
else
response.Write("没有上岸")
endif
%>
</p>我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。 |
|