cookies的使用???
问我这样设置我的风格cookies.asp
<%
dim cookies_style
cookies_style = request.QueryString("style")
response.Cookies("bx")("style") = cookies_style
response.redirect Request.ServerVariables("HTTP_REFERER")
%>
在其他文件中是这样写的代码
<%
dim std
std = Request.Cookies("bx")("style")
styleid = CInt(std)
·····
%>
但是怎么不能改变我设置的风格
应该是cookies没有设置好还是别的???