My form has different sections in it. Each section is contained in a panel. On some sections there is a datagrid with select buttons on it for the user to select a value, and there is also a button that says "add new" for the user to click if the value isn't shown. My problem is that another section has some items that require validation. Other than having the panel not display on the page (therefor no field to validate against), is there a way to bypass the validation controls if the user clicks the add new button?
Also, I have 3 radio button lists. Each of these have a default value. When the user is finished I display a panel with a message that tells them they have completed and give them an option of starting over with a new posting. When the user clicks that button I clear all of the form fields and show a fresh screen. However, If they selected any of the radio buttons other than the default, the previously selected radio button is shown. What do I need to do to change these back to default selection. Here is an example of one of the radio button list controls that I use. I am using VB.Net
<asp:RadioButtonList id="multiPick" runat="server" RepeatDirection="Horizontal">
<asp:ListItem id="multiPickT" Value="True">True</asp:ListItem>
<asp:ListItem id="multiPickF" Value="False" Selected="True">False</asp:ListItem>
</asp:RadioButtonList>