English 中文(简体)
C# Asp. net 转换. toDateTime( dateTime( datevalue) 给出了不同文化信息需要的错误, 日期模式看起来像 5/1/ 2012 中午12:00 AM 。
原标题:C# Asp.net Convert.toDateTime(datevalue) gives error with different cultureinfo need datepattern look like 5/1/2012 12:00:00 AM

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 文化

问题回答

您可以在调用 "MM/dd/yyyyy" 时尝试使用 作为您的格式字符串, 前提是您确定输入总是以该格式进行 。

或者,尝试使用 convert. toDateTime( 您的风格, 文化Info. InviclationCulture) 代替

在此情况下, 您需要将日历中的 < a href= > 设置为 SQL 服务器所使用的格式 。 然后, 您可以使用一个隐藏的字段为您的日期采集器存储altDate 。 当您提交时, 将会将 < a href=" http://docs.jquery.com/ UI/ Datepicker #option- alt Format" rel= “ nofollow” >altFormat 的值发送给您的服务器, 而不是发送给用户显示的文化特定值 。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签