|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对用户来说可预见费用、节约费用,可以做到花少钱办大事。由于省去了购买软件和硬件等的前期费用,用户可以租用较高级的应用软件。ASP的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。接口<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<scriptlanguage="javascript"type="text/javascript">
<!--
functionSaveCookie()
{
document.cookie="name="+document.getElementById("name").value
+"expires=01-Jan-200823:59:59";//此处可依据必要自行修正
document.cookie="pass="+document.getElementById("pass").value
+"expires=01-Jan-200823:59:59";//此处可依据必要自行修正
}
-->
</script>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>[Requestsamples]</title>
</head>
<body>
<%
username=Request.Cookies("name")
password=Request.Cookies("pass")
此处能够拔出用户数据查询。并交换上面默许暗码“admin”
ifusername=""orpassword"admin"then
%>
<formmethod="post">
<table>
<tr>
<td>pleaseinputyourname:</td>
<td><inputtype="text"name="name"id="name"/></td>
</tr>
<tr>
<td>pleaseinputpassword:</td>
<td><inputtype="password"name="pass"id="pass"/></td>
</tr>
<tr>
<td><inputtype="submit"value="submit"/></td>
<td><inputtype="reset"value="reset"/></td>
</tr>
</table>
</form>
<%else%>
<h1>WelcometoASP</h1>
<br/>
<p>
hello!<%=username%>.<br>
thereare<%=Request.TotalBytes%>bit....
</p>
<%endif%>
</body>
</html>
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。 |
|