0

我使用表单让用户选择在网页上显示或隐藏日期,是或否。我正在使用 cookie 来存储选项,但我可以找到或弄清楚如何在页面上显示或不显示日期。我一直在尝试使用 IF 语句处理 yes 或 no 选项,然后将其用作网页的 css 样式表。也许我做错了。问候特雷夫

编辑从这里开始

到目前为止我的代码(不工作,甚至不知道我是否在正确的轨道上)

css/asp 处理样式表中的代码 styleCookieProcess.asp

<%
date= Response.Cookies("usedate")
If(date= "yes") then
    Response.Cookies("wantdate") = "date()"
ElseIf(date= "no") then
    Response.Cookies("wantdate") = "None"
End If
%>

这是我网页中的代码:

<html>
<head>
<link rel="stylesheet" type="text/css" href="styleCookieProcess.asp">
<title>About Us</title>
</head>

<body>

<p>Current Date &nbsp; <%
Response.Write(Response.Cookies("wantdate"))
%></p>

<P ALIGN = "CENTER">
<IMG SRC = "Images\About_Us.png" HEIGHT = "250" WIDTH = "715">
</P>

<TABLE ALIGN = "CENTER">

<tr>  
<th>
<DIV ALIGN = "CENTER">
<P>
We have been around the block and back and have the t-shirt to prove it!
The Glad Rag Team
</P>
</DIV>
</th>   
</tr>
</TABLE>

</body>
</html>

问候, Bubs

4

1 回答 1

0

尝试这个

<%
date= Response.Cookies("usedate")
If(date= "yes") then
Response.Cookies("wantdate") = "date()"
Else
Response.Cookies("wantdate") = "None"
End If
%>
于 2013-04-05T23:36:50.723 回答