如何使用asp classic显示或隐藏日期

时间:2013-04-03 09:18:26

标签: date time asp-classic hide show

我使用表单为用户提供在网页上显示或隐藏日期的选项,无论是或否。 我使用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

1 个答案:

答案 0 :(得分:0)

试试这个

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