|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。cookie|初学<!--------index.asp---------->
<style>
body,form,table{font-size:12px;font-family:Verdana}
.inp{border-left:white;border-top:white;border-right:white;border-bottom:1pxsolidgray;width:80px}
</style>
<%
ifrequest.Cookies("User")("Name")=""then
%>
<formmethod=postname=loginaction=login.asp>
<divalign=center>
<tablecellspacing=5cellpadding=5>
<tr>
<tdcolspan=2>您还没有登录!</td>
</tr>
<tr>
<tdwidth=60align=right>用户名:</td><tdalign=left><inputname=Nameclass=inp></td>
</tr>
<tr>
<tdwidth=60align=right>密码:</td><tdalign=left><inputname=Pwdclass=inptype=password></td>
</tr>
<tr>
<tdwidth=60align=right>保留刻日:</td><tdalign=left><selectname=Cookies_Time>
<optionvalue=1>1
<optionvalue=7>1周
</select></td>
</tr>
<tr>
<tdcolspan=2><inputtype=submitvalue=提交></td>
</tr>
</form>
<%
else
%>
<spanstyle="font-size:12px;font-family:Verdana">接待您,</span><%=request.cookies("User")("Name")%>。
<%
endif
%>
<!-------------login.asp----------->
<%
Response.Cookies("User")("Name")=request("Name")
Response.Cookies("User")("Pwd")=request("Pwd")
Cookies_Time=request.form("Cookies_Time")
ifCookies_Time=""thenCookies_Time=1
ifCookies_Time"0"then
Cookies_Time=dateadd("d",Cookies_Time,date())
Response.Cookies("User").expires=Cookies_Time
response.redirect"index.asp"
endif
%>
因为是第一次登录,以是没有cookie保留在TemporaryInternetFiles文件夹,在填写用户名和暗码和保留cookies的工夫刻日后,点击"提交"按钮,在TemporaryInternetFiles(点击IE的"工具"->"Internet选项"的"Internet一时文件"这一栏目标"设置"->"检察"按钮便可翻开该文件夹。)文件夹里便可发生一个cookie文件,假如按"具体材料"检察的话,很分明的能够看到在"停止期"的工夫就是cookie过时工夫。也能够保留cookie过时工夫为几小时,将下面代码中的dateadd("d",Cookies_Time,date())改成dateadd("h",Cookies_Time,now())便可。(这些都是织梦里一些帖中能够翻失掉的)
写cookie:response.cookies("xx")=值
读cookie:request.cookies("xx")
也能够像下面中的代码一样创立cookie字典。
这个例子并没有整合数据库,目标只是为了让那些瞥见cookie就打退堂鼓的伴侣了解它的运作,本来是那末复杂。
团体以为教程中只管把代码不用要的部分省往,太多杂的代码会影响效果,我下面也有良多杂的代码,可是应当不会有太年夜影响。只要你想学,就没什么优缺点,上面那位大哥已经把网上的评论说了,但我认为想学哪个都一样,不然它就不可能在当今时代数字艺术方面存活到今天 |
|