control events

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

Hi there, I have been trying to find out more information about the
events associated with controls such as the combo boxes, radion button
lists and text boxes etc. Can anyone suggest a good site / book which
describes these in detail?

The reason being I am trying to replicate an Access adp online, and was
trying to update a text box upon selecting a radio button option but
couldn't do this, as the event for the radio button only seeemd to fire
when the page was posted back by a button click, not when the radio
button was clicked.

Thanks
 
What you need is to introduce yourself to client-side programming with
javascript and plain html controls.

BTW, there is no combobox in html. 3rd party components can mimic combobox
behavior though.

Eliyahu
 
Thanks Eliyahu, I also realised that I didn't have the AutoPostback
property set which was why the event wasn't firing upon clicking
 
This solves your immediate problem on server side. Likely, you could've done
it more efficiently on client side. If you want to make usable web
applications, you have to invest a lot in your client side skills.

Eliyahu
 
Back
Top