Hello everyone,
I am getting list of data from datatable with date also.
- List
objTble_accessLog = new List(); - if (dt != null && dt.Rows.Count > 0)
- {
- objTble_accessLog = dt.AsEnumerable().Select(m => new Tble_accessLog()
- {
- accessLogId = m.Field
("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.

Nitin SontakkePosted Jan 16, 2017, 10:07 AM
Nitin SontakkePosted Jan 16, 2017, 10:16 PM
Abhilash J APosted Jan 16, 2017, 11:34 AM
Chetan RanpariyaPosted Jan 16, 2017, 10:44 AM
Abhilash J APosted Jan 16, 2017, 10:16 AM