Which ASP.NET web controls implement IPostBackDataHandler?

Can anyone point me to a list of controls that implement IPostBackDataHandler

?

I want to know which controls are implementing this interface and what properties the controls will set at time Postback

.

For example:

Text box: text

DropDownList: SelectedIndex

I'm basically looking for a list of properties that won't be saved to ViewState

.

Thank!

0


source to share


2 answers


In the .NET IDE, open the Object Explorer window. You can find this window in the View menu, or it can be, depending on your configuration, on the top toolbar.

In the search text box in the class or frontend, in this case, you are looking for: IPostBackDataHandler

and submit.



In the results, expand the type and then expand the derived types folder, you will find what you are looking for!

+1


source


here is what @TheZenker says about ...



enter image description here

0


source







All Articles