如何在ASP.Net中重置比较验证器的日期类型 我正在使用dd / MM / yyyy格式的文本框的Calendar Extender,其中Compare Validater查找MM / dd / YYYY格式。 那么如何更改Compare Validator的日期格式。
答案 0 :(得分:1)
您可以通过更改页面的CultureInfo(或Web.Config中的整个应用程序)来更改DateFormat。这可以在aspx-page的page指令或代码隐藏中实现。 有关详细信息,请查看MSDN:How to: Set the Culture and UI Culture for ASP.NET Web Page Globalization
例如(MM / dd / YYYY是US-Culture,不是吗?):
<%@ Page UICulture="en-us" Culture="en-US" %>