Event On Form From Control Event

  • Thread starter Thread starter Dave Wurtz
  • Start date Start date
D

Dave Wurtz

All,

Is there an event on the Form that will get fired when the text in another
control (i.e. textbox) is changed?

Thanks in advance!

Dave
 
You really wouldn't want that on the server side, or every character typed
in would cause a PostBack. You can use JavaScript on the client side to
capture the onchange event of an input type=text form field.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top