Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

does gridview save data in viewstate?

hi i bind a DataTable to a gridview. i want to use the DataTable in some postback event, and ii want to use viewstate. does gridview save data in viewstate? if no what is the best way to do this.

(full story : i have a custom gridview derived from standard asp.net gridview, and i put a button in header to export data to excel, i want to use data saved in viewstate to export to excel)

thanks

like image 969
ehsan Avatar asked Jun 13 '26 08:06

ehsan


2 Answers

The short answer is yes, information shown in the GridView, much like the current state of any control, is stored in ViewState. However, I do not think it is easy, if even possible, to get to this data yourself out of the ViewState collection that is available to WebControls. Instead, ASP.NET populates values from ViewState before running event handlers in the lifecycle, so if you interrogate your GridView object server-side in a handler, you should see the current values of the cells.

like image 185
KeithS Avatar answered Jun 15 '26 22:06

KeithS


There are other ways like:

1: Storing your DataTable in Session

2: Depending on how often that export button is going to be used and the amount of data fetched, you can make a DB call.

like image 40
gbs Avatar answered Jun 15 '26 21:06

gbs



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!