Reputation: 2861
I have a gridview where I set the datasource when the user click a button on the form. Im trying to get the rowcount of the gridview using the same button_click event, but its returning the rowcount previous to the datasource being set, ie 0. Im using
strCount = gvReturned.Rows.Count.Tostring();
Any hints appreciated.
thanks
T
Upvotes: 0
Views: 5654
Reputation: 17405
Try calling
gvReturned.DataBind()
after setting the source but before requesting the count..
Upvotes: 0