In my Asp.net Website i have two textboxes (txtstartdate, txtenddate) applied JQquery Datepicker which popups gives date in format ("05/24/2012"). Work fine for cultureInfo("en-US"), when i change to ("de") ie German its give error "System.FormatException: String was not recognized as a valid DateTime.". In my code behind file i am writing this code
string sDate = txtstartdate.Text; // 05/01/2012 (debugging gives this values)
string eDate = txtenddate.Text; // 05/24/2012 (debugging gives this values)
DateTime startdate = Convert.ToDateTime(sDate); // 5/1/2012 12:00:00 AM
DateTime enddate = Convert.ToDateTime(eDate); // 5/24/2012 12:00:00 AM
我的要求是 < 强度 > 日期 < 强度日期 强度 > 变量必须给出格式的日期 < 强度 > 5/ 1/ 2012 中午 2: 00 AM < / 强度 > 不管文化信息集与日期无关。 这样我就可以在 < 强度 > MsSql 服务器 < /强度 > 现有表格中执行 < 强度 > 选择查询 < /强度 >, 该表格带有列数据类型 < 强度 > Datetime 强度 > 和数据( 5/ 1/ 2012 中午12:00 AM) 窗体 。
After Changing the CultureInfo (from Masterpage dropdownlist) Englsih to German gives error Have tried this but not working
DateTime startdate = DateTime.ParseExact(sDate, "M/d/yyyy", null);
//tried also "MM/dd/yyyy"
<强度 > 注: 强度> 设置任何天体info, 但日期时间模式 Alwayz 是 5/1/ 2012 中午12:00: 00 AM ee en- US
文化