Author: marchnw | Posted on: 9/23/2008 11:09:01 AM | Views : 1391

I have a checkbox list with 14 items. The last item in the list is 'other'. I'm trying to make it so that when a user clicks 'other' they will have to specify what the item is in a textbox. Ideally, the textbox would be hidden until 'other' is clicked, then it would show and be required. I've set the checkbox list to auto postback and it seems like I could then put a function in the page load if postback = true and item 14 is checked. How should this be done? How do I know if a item is checked? Every thing I've done so far only looks at the first item checked. Thanks in advance for any help
<p id="answers">
<asp:CheckBoxList ID="answer44" runat="server" AutoPostBack="True">
< ...

Go to the complete details ...