Domanda

i am trying to get datarow from aspxgridview but it says

Cannot convert type 'object[]' to 'System.Data.DataRow'

code i tried is

 DataRow dr = (DataRow)ASPxGridView1.GetRowValues(i, "ID", "School ID", "Name", "Type", "DOB", "Cell", "Guardian Cell");

&&

DataRow dr = (DataRow)ASPxGridView1.GetRow(i);
È stato utile?

Soluzione

You should be calling GetDataRow, that will return you a DataRow - the methods you are calling just now return object (which probably just wrap up object[]).

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top