vote up 0 vote down star

I have an asp:checkbox control, and I want to change the visibility of a Label when it is checked or unchecked. To do this I'm attempting to use the OnCheckChanged event, which apparently only fires after a post to the server. This means that my Label's visibility isn't changing immediately. How do I post to the server (and preserve the state of my form) so that when the checkbox is clicked the Label's visibility immediately toggles?

flag

57% accept rate

2 Answers

vote up 0 vote down check

Set AutoPostBack = true for the check box.

link|flag
vote up 0 vote down

Well, do you need the checkbox control to post to the server when is clicked?

if the answer is no, then you could use an html input control and use javascript to handle the onclick event. This way the action would be immediate and you save a post back to the server.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.