How to get client date and time in ASP.NET?

試著忘記壹切 提交于 2019-11-26 03:57:21

问题


When I use DateTime.Now I get the date and time from the server point of view. Is there any way to get the client date and time in ASP.NET?


回答1:


What I'd do is create a hidden input field and then wire a Javascript routine to the onsubmit event for the form. This routine would populate the hidden field with the time on the client machine.

The hidden field can used with ASP.NET by using the HTML control "HtmlInputHidden" class. You just give you input control a runat="server" attribute like any other server side control.

The server can then read out this time when the form posts back. You could even wrap this up in a server control if you need to do this in a number of places.

Alternatively, you could do this with AJAX but the implementation will depend on which library you use.




回答2:


I like the idea of either using the browser/system time and time zone or letting them select their time zone. In a past project I used something like this:

<script language="javascript">
function checkClientTimeZone()
{
    // Set the client time zone
    var dt = new Date();
    SetCookieCrumb("ClientDateTime", dt.toString());

    var tz = -dt.getTimezoneOffset();
    SetCookieCrumb("ClientTimeZone", tz.toString());

    // Expire in one year
    dt.setYear(dt.getYear() + 1);
    SetCookieCrumb("expires", dt.toUTCString());
}

// Attach to the document onload event
checkClientTimeZone();
</script>

And then on the server:

/// <summary>
/// Returns the client (if available in cookie) or server timezone.
/// </summary>
public static int GetTimeZoneOffset(HttpRequest Request)
{
    // Default to the server time zone
    TimeZone tz = TimeZone.CurrentTimeZone;
    TimeSpan ts = tz.GetUtcOffset(DateTime.Now);
    int result = (int) ts.TotalMinutes;
    // Then check for client time zone (minutes) in a cookie
    HttpCookie cookie = Request.Cookies["ClientTimeZone"];
    if (cookie != null)
    {
        int clientTimeZone;
        if (Int32.TryParse(cookie.Value, out clientTimeZone))
            result = clientTimeZone;
    }
    return result;
}

Or you can pass it in as a URL parameter and handle it in the Page_Load:

http://host/page.aspx?tz=-360

Just remember to use minutes, since not all time zones are whole hours.




回答3:


if you're maintaining a user profile, you can ask them to tell you their timezone, and then do the calculations necessary.




回答4:


The alternative is to geolocate the user based on his/her IP address. Or geolocate if the browser has this capability (coming soon for Firefox). Once you have the user's location you can lookup the timezone.

The javascript solution is probably a good and easy one.




回答5:


Client and server may not be totally synchronized, so the question is if you want the time on the client computer, or you want the time on the server, but adjusted for time-zone differences. Javascript can get you the time on the client (including timezone). You can also combine the time on the server with the timezone of the client.

You can never get the time with higher precision than the latcency of a request, though.




回答6:


I used this method in ASP.Net with VB

Dim strLanguage As String = Request.UserLanguages(0)
Dim currentCulture As CultureInfo = CultureInfo.CreateSpecificCulture(strLanguage)
Dim dateformat As String = currentCulture.DateTimeFormat.ShortDatePattern

This will yield the data time format of the computer looking at the data.



来源:https://stackoverflow.com/questions/274826/how-to-get-client-date-and-time-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!