Global.asax中的日期时间格式

时间:2016-12-27 07:03:51

标签: c# asp.net-mvc-4 datetime

我正在尝试从Global.asax更改日期时间格式,并且日期格式正在完美变化但时间格式没有改变它仍然是我想要在上午/下午24小时。 以下是我在Global.asax中的代码

protected void Application_BeginRequest(Object sender, EventArgs e)
    {
        PEXIPOutlookPlugInsEntities1 db = new Models.PEXIPOutlookPlugInsEntities1();
        CultureInfo newCulture = (CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
        newCulture.DateTimeFormat.ShortDatePattern = "MM/dd/yyyy";
        newCulture.DateTimeFormat.ShortTimePattern = "hh:mm tt";
        newCulture.DateTimeFormat.LongDatePattern = "MM/dd/yyyy";
        newCulture.DateTimeFormat.LongTimePattern = "hh:mm tt";
        newCulture.DateTimeFormat.DateSeparator = "/";
        Thread.CurrentThread.CurrentCulture = newCulture;
    }

我在做什么错。 感谢

0 个答案:

没有答案