|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。Codetoclearbrowserhistory
/*Thislogout.aspisusedtoclearthebackpagesofthebrowser,
/*iftheuserhasloggedout.
/*iftherearenospecificvbscriptingtobedonethenyoucan
/*usethisfileaslogout.htm
<%
/*Clearallyoursessionsoverhereanddoother
/*desiredthings
%>
<SCRIPTLANGUAGE=javascript>
{
varBacklen=history.length;
history.go(-Backlen);
top.window.location.href="../esadmin/administer.asp";
}
</SCRIPT>
/*herethe"../esadmin/administer.asp"pageisthe
/*desiredpagetobedisplayedaftertheuserlogsout
Tousethecodeabove,clickanddragyourmouseoverthecodetohighlightit.Thenrightclickonthe
highlightedcodeandclick"Copy."Nowyoumaypasteitintoyourcodeeditor.
结论:和PHP一样,ASP简单而易于维护,很适合小型网站应用,通过DCOM和MTS技术,ASP甚至还可以完成小规模的企业应用,但ASP的致命缺点就是不支持跨平台的系统,在大型项目开发和维护上非常困难。 |
|