Hi,
I'm getting the error:
Unable to cast object of type 'System.Data.Common.DataRecordInternal' to type 'System.Data.DataRowView' for the following code:
protected void Repeater_ItemDataBound(Object Sender, RepeaterItemEventArgs e)
{
// Execute the following logic for Items and Alternating Items.
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
DataRowView row = (DataRowView)e.Item.DataItem;
............
any ideas how to resolve please?
Go to the complete details ...