Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
5
Answers
error-String was not recognized as a valid DateTime.
Mani Kandan
7y
273
1
Reply
Hello everyone,
I am getting list of data from datatable with date also.
List<Tble_accessLog> objTble_accessLog =
new
List<Tble_accessLog>();
if
(dt !=
null
&& dt.Rows.Count > 0)
{
objTble_accessLog = dt.AsEnumerable().Select(m =>
new
Tble_accessLog()
{
accessLogId = m.Field<Int64>(
"accessLogId"
),
FullName = m.Field<
string
>(
"FullName"
),
AccessDate = m.Field<
string
>(
"AccessDate"
),
Action = m.Field<
string
>(
"Action"
)
}).ToList();
cnn.Close();
}
return
objTble_accessLog;
After I am trying to bind this data to listview, then occurred date format error. Here
AccessDate
string datatype.
How can I solve this issue? Please help me.
Post
Reset
Cancel
Answers (
5
)
Next Recommended Forum
How to add download button in the webgrid MVC?
Show Checkbox Control In The Row Of Datagridview