文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>asp用cookies实现用户名自动填写- ASP教程-

asp用cookies实现用户名自动填写- ASP教程-

时间:2010-08-28  来源:深圳的天空

<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
if Trim(Request.Form("user"))<>"" then  '如果不为空就将user写入cookies
Response.cookies("user").expires=date()+2 '设定cookies的有效期为二天
Response.cookies("user")=Trim(Request.Form("user")) '写cookies
Response.Write("欢迎光临,下面是你提交的内容:<br>"&Trim(Request.Form("user")))
else'功能部分,这里只显示出提交的信息 %>
<form id="form1" name="form1" method="post" action="">
<input name="user" type="text" id="txt1" value="<%= Trim(Request.cookies("user"))' 将cookies的值写入文本框%>" maxlength="20"/>
<input type="submit" name="Submit" value="提交" />
<input type="reset" name="Submit2" value="重置" />
</form>
<% end if %>

 


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载