Is there a way to call the OnItemDataBound routine without performing a databind?
My OnItemDataBound routine is called LoadItemData(ByVal sender As Object, ByVal e As DataGridItemEventArgs)
There is some logic in there that needs to be done but I don't want the data values to be loaded from the db using a databind.
What is SENDER and E looking for?
LoadItemData(DatagridName, ???)
Any info would be helpful. Thanks.
My OnItemDataBound routine is called LoadItemData(ByVal sender As Object, ByVal e As DataGridItemEventArgs)
There is some logic in there that needs to be done but I don't want the data values to be loaded from the db using a databind.
What is SENDER and E looking for?
LoadItemData(DatagridName, ???)
Any info would be helpful. Thanks.