Click here to Skip to main content
15,881,027 members

Comments by Raju Hasan (Top 2 by date)

Raju Hasan 17-Feb-13 3:44am View    
I Think he means Without Entity Framework
Raju Hasan 8-Jan-13 8:10am View    
I get Date from Date Picker which come with jquery;
In my database RegDate is Date formate & in my class regDate is DateTime Format.
When i want to save data into database then i face "String was not recognized as a valid DateTime."
MY CODE IS
string datestring = registrationDateTextBox.Text;
aStudent.RegDate = Convert.ToDateTime(datestring, System.Globalization.CultureInfo.GetCultureInfo("hi-IN").DateTimeFormat);
PLZ help me......