Error converting datetime to string
- by user279521
Hi, I am getting an error when I attempt to display a datetime value in a textbox:
My code is:
txtStartDate.Text = rdrGetUserInfo.IsDBNull(14) ? String.Empty : Convert.ToString(rdrGetUserInfo.GetString(14));
The error message is: ex.Message = "Unable to cast object of type 'System.DateTime' to type 'System.String'."
Any ideas how I can resolve this?