Answers
Sep 27, 2007 - 12:57 AM
Oct 18, 2007 - 03:47 AM
Visit the link to get your task done..
!
.
.
.
In our code behind, we got the value and put it in a cookie. The alternative was to put it in a session.
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack && Request.Cookies[”utcOffset”] == null)
{
HttpCookie utcOffsetCookie =
new HttpCookie(”utcOffset”, “0″);
if (!string.IsNullOrEmpty(UtcOffset.Value))
utcOffsetCookie.Value = UtcOffset.Value;
Response.Cookies.Add(utcOffsetCookie);
}
}
Mar 04, 2009 - 05:58 AM
The Quomon Team
Add New Comment