Click here to Skip to main content
15,884,769 members
Articles / Web Development / ASP.NET

DateTime Values according to the remote time zone

Rate me:
Please Sign up or sign in to vote.
3.94/5 (6 votes)
8 Sep 2006CPOL1 min read 104.2K   552   43  
Shows how to define timezone of the remote user and display date time values according to remote time zone
using System;
using System.Web.Security;
using System.Web.UI;

public partial class _Default : Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Profile.hoursDiffStdTime = Double.Parse(Request.Cookies["hoursDiffStdTime"].Value );  
        Label1.Text = TimeZoneManager.DisplayDateTime(DateTime.Now, Profile);    
    }
    protected void LinkButton1_Click(object sender, EventArgs e)
    {
        FormsAuthentication.SignOut();
        Response.Redirect("~/login.aspx"); 
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions