C# class libray equivelent of autopostback

  • Thread starter Thread starter gordon
  • Start date Start date
G

gordon

Hi

Could someone tell me how to get a combobox in a class library to do the
equivilent of an asp autopostback?

thanks

Doug
 
Autopostback is a specific property to ASP.NET web server controls. If you
are creating an inherited control in your library it will contain this
property. If this is a WinForms control it does not have an AutoPostBack
property, you would respond to one of the WinForm events on the control.
 
Back
Top