How can I change the Text for a CheckBox without a postback?
<asp:CheckBox ID="CheckBox1" runat="server" Text="Open" />
I would like to toggle the Text to read "Open" or "Closed" when the CheckBox is clicked on the client.
|
|
How can I change the Text for a CheckBox without a postback?
I would like to toggle the Text to read "Open" or "Closed" when the CheckBox is clicked on the client. |
||
|
|
|
|
called as:
Just FYI, it's usually bad practice to change the text of the checkbox label because it tends to confuse the user. |
||||||
|
|
|
If you're interested to use a framework javascript like jQuery, i propose a solution ilke this:
|
||
|
|
|
|
3 Easy Options Use JavaScript to change the text client side- By Registering the Event in the .CS class like so:
Use an HTML Checkbox with JQuery Or put in an an Ajax Update Panel |
||||
|