您现在的位置是:网站首页> 编程资料编程资料
如何在ASP中恰当地运用Cookies?_编程10000问_
2023-05-25
191人已围观
简介 如何在ASP中恰当地运用Cookies?_编程10000问_
remberme.asp
' 用户提交个人信息.
<%
response.Cookies("information")("姓名")=request.form("name")
response.Cookies("information")("顾客号")=request.form("id")
response.Cookies("information")("来自")=request.form("from")
……
' 定义一个名为information的Cookies字典,你可以定义更多,如果你需要.
%>
星河影动之Cookies应用