ASP.Net, SQLITE Survey Form: Mutually exclusive selection Form

Requirement: Designing a survey Form where:
1. On Page 1 only 5 out of 10 items can be selected
2. On page 2 selection will be mutually exclusive for setting priorities.

Screenshots are attached (click to enlarge):








Here is the HTML:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %><br />
<br />
<!DOCTYPE html><br />
<br />
<html xmlns="http://www.w3.org/1999/xhtml"><br />
<head runat="server"><br />
    <title></title><br />
    <script type="text/javascript" language="javascript"><br />
<br />
function CheckCheck()<br />
{<br />
<br />
        var chkBoxList=document.getElementById('<%=CheckBoxList1.ClientID %>');        var chkBoxCount=chkBoxList.getElementsByTagName("input");<br />
 <br />
<br />
        var btn=document.getElementById('<%=btnSubmit.ClientID %>');<br />
<br />
         var i=0;<br />
       var tot=0;<br />
<br />
        for(i=0;i<chkBoxCount.length;i++)<br />
         {<br />
<br />
 <br />
<br />
                  if(chkBoxCount[i].checked)<br />
                 {<br />
<br />
 <br />
<br />
                       tot=tot+1;<br />
<br />
                }<br />
<br />
          }<br />
<br />
if(tot>5)<br />
{<br />
<br />
              alert('Cannot check more than 5 check boxes');              btn.disabled=true;<br />
 <br />
<br />
   }<br />
<br />
else<br />
<br />
{<br />
<br />
           btn.disabled=false;<br />
}<br />
<br />
}<br />
<br />
</script><br />
    <link href="StyleSheet.css" rel="stylesheet" /><br />
</head><br />
<body><br />
    <form id="form1" runat="server"><br />
          <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager><br />
        <asp:UpdatePanel ID="UpdatePanel1" runat="server"><br />
            <Triggers><br />
                <asp:AsyncPostBackTrigger ControlID="RadioButtonList1" EventName="SelectedIndexChanged" /><br />
                  <asp:AsyncPostBackTrigger ControlID="RadioButtonList2" EventName="SelectedIndexChanged" /><br />
                  <asp:AsyncPostBackTrigger ControlID="RadioButtonList3" EventName="SelectedIndexChanged" /><br />
                  <asp:AsyncPostBackTrigger ControlID="RadioButtonList4" EventName="SelectedIndexChanged" /><br />
                  <asp:AsyncPostBackTrigger ControlID="RadioButtonList5" EventName="SelectedIndexChanged" /><br />
<br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList11" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList12" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList13" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList14" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList15" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList21" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList22" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList23" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList24" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList25" EventName="SelectedIndexChanged" /><br />
<br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList31" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList32" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList33" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList34" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList35" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList41" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList42" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList43" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList44" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList45" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList51" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList52" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList53" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList54" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList55" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList61" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList62" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList63" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList64" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList65" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList71" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList72" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList73" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList74" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList75" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList81" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList82" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList83" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList84" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList85" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList91" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList92" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList93" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList94" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList95" EventName="SelectedIndexChanged" /><br />
                   <asp:AsyncPostBackTrigger ControlID="RadioButtonList101" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList102" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList103" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList104" EventName="SelectedIndexChanged" /><br />
   <asp:AsyncPostBackTrigger ControlID="RadioButtonList105" EventName="SelectedIndexChanged" /><br />
           </Triggers><br />
            <ContentTemplate><br />
       <br />
    <div><br />
        <asp:Panel ID="Panel1" runat="server"><br />
     <div class="myhead"  >Survey: Great Place To work For</div> <br />  <br /><br /><br />
  <b> There can be more than one dimension which go forward and define the basics of a great place to work for. However there are some among them whose small positive existence leads to a multifold effect on the existence of greatness in the workplace and whose absence or negligence leads to a great effect accordingly. What according to you are the TOP five dimensions as such of a GREAT PLACE TO WORK FOR? <br />
</b><br />
        <br /><br />
        <br /><br />
        <asp:CheckBoxList ID="CheckBoxList1" runat="server" onclick="javascript:CheckCheck();" DataTextField="t" DataValueField="v"><br />
                </asp:CheckBoxList><br />
       <asp:Button ID="btnReset" runat="server" Text="Reset All Options" />&nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  <br />
            &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  <asp:Button ID="btnSubmit" runat="server" Text="Next -->>" /><br />
        </asp:Panel><br />
          <asp:Panel ID="Panel2" runat="server" Visible="false" ><br />
                <img src="images/30.png" width ="250px" /><br />
               <div class="mybox"  >Priority</div> <br />  <br />
           <b> There can be more than one dimension which go forward and define the basics of a great place to work for. However there are some among them whose small positive existence leads to a multifold effect on the existence of greatness in the workplace and whose absence or negligence leads to a great effect accordingly. What according to you are the TOP five dimensions as such of a GREAT PLACE TO WORK FOR?<br />
                Please give priority [1-5, 1 being for the top most] to the dimension you have selected: </b> <br /><br /><br />
                <asp:Label ID="lblPara1" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList1" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" ><br />
                  <asp:ListItem>1</asp:ListItem><br />
                  <asp:ListItem>2</asp:ListItem><br />
                  <asp:ListItem>3</asp:ListItem><br />
                  <asp:ListItem>4</asp:ListItem><br />
                  <asp:ListItem>5</asp:ListItem><br />
              </asp:RadioButtonList><br />
               <asp:Label ID="lblPara2" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList2" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True"><br />
                  <asp:ListItem>1</asp:ListItem><br />
                  <asp:ListItem>2</asp:ListItem><br />
                  <asp:ListItem>3</asp:ListItem><br />
                  <asp:ListItem>4</asp:ListItem><br />
                  <asp:ListItem>5</asp:ListItem><br />
              </asp:RadioButtonList><br />
               <asp:Label ID="lblPara3" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList3" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True"><br />
                  <asp:ListItem>1</asp:ListItem><br />
                  <asp:ListItem>2</asp:ListItem><br />
                  <asp:ListItem>3</asp:ListItem><br />
                  <asp:ListItem>4</asp:ListItem><br />
                  <asp:ListItem>5</asp:ListItem><br />
              </asp:RadioButtonList><br />
               <asp:Label ID="lblPara4" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList4" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True"><br />
                  <asp:ListItem>1</asp:ListItem><br />
                  <asp:ListItem>2</asp:ListItem><br />
                  <asp:ListItem>3</asp:ListItem><br />
                  <asp:ListItem>4</asp:ListItem><br />
                  <asp:ListItem>5</asp:ListItem><br />
              </asp:RadioButtonList><br />
               <asp:Label ID="lblPara5" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList5" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True"><br />
                  <asp:ListItem>1</asp:ListItem><br />
                  <asp:ListItem>2</asp:ListItem><br />
                  <asp:ListItem>3</asp:ListItem><br />
                  <asp:ListItem>4</asp:ListItem><br />
                  <asp:ListItem>5</asp:ListItem><br />
              </asp:RadioButtonList><br />
              <br /><br />
              <table> <br />
            <tr><td>  Gender: </td> <td> <asp:DropDownList ID="ddlSex" runat="server"><br />
                    <asp:ListItem Selected="True">Male</asp:ListItem><br />
                    <asp:ListItem>Female</asp:ListItem><br />
                </asp:DropDownList><br />
             </td> </tr><br />
              <tr><td>  Location: </td> <td><asp:DropDownList ID="ddlLocation" runat="server"><br />
                    <asp:ListItem Selected="True">Project</asp:ListItem><br />
                    <asp:ListItem>RHQ</asp:ListItem><br />
                   <asp:ListItem>CC</asp:ListItem><br />
                   <asp:ListItem>JV</asp:ListItem><br />
                   <asp:ListItem>Deputation</asp:ListItem><br />
                </asp:DropDownList><br />
             </td> </tr><br />
                   <tr><td>  Grade: </td> <td><asp:DropDownList ID="ddlGrade" runat="server"><br />
                  <asp:ListItem  Value="1">Non Executive</asp:ListItem><br />
                    <asp:ListItem Value="2" Selected="True">Executive(E1-E4)</asp:ListItem><br />
                   <asp:ListItem Value="3">Executive(E5-E6)</asp:ListItem><br />
                       <asp:ListItem Value="4">Executive(E7-Above)</asp:ListItem><br />
                </asp:DropDownList><br />
             </td> </tr><br />
             <tr><td>  Experience:</td> <td> <asp:DropDownList ID="ddlExp" runat="server"><br />
                    <asp:ListItem Selected="True" Value="1">Below 10Yr</asp:ListItem><br />
                    <asp:ListItem Value="2">Between 10-20Yr</asp:ListItem><br />
                   <asp:ListItem Value="3">Above 20Yr</asp:ListItem><br />
                </asp:DropDownList><br />
              </td> </tr><br />
              <tr><td> Department:</td> <td><asp:TextBox ID="txtDept" runat="server"></asp:TextBox><br />
            </td> </tr><br />
                   <tr><td colspan="2">Which company you look forward as the company with the highest benchmark to follow and refer? Please try to quote the example preferably from the same domain/sector as your own company<br />
                       </td> <td><br />
                </td> </tr><br />
                  <tr><td></td><td><asp:TextBox ID="txtCompany" runat="server"></asp:TextBox></td></tr><br />
                  </table><br />
             <asp:Button ID="btnReset2" runat="server" Text="Reset All Options" />&nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;  <br />
            &nbsp;  &nbsp;  &nbsp;  &nbsp;  &nbsp;   <asp:Button ID="btnSubmit2" runat="server" Text="Next-->>" /><br />
          </asp:Panel><br />
         <asp:Panel ID="Panel3" runat="server" Visible="false" ><br />
              <img src="images/60.png" width ="250px" /><br />
               <div class="myhead"  >Questions</div> <br />  <br />
             <b>Now that you have selected the TOP five dimensions of a GREAT PLACE TO WORK FOR, please tell us about the sub dimensions/ parameters which stand up most prioritized and least prioritized for those dimensions.(Choose Most and Less likely for each Dimension. To change options click on Reset anytime.)</b><br /><br />
             <div class="myfont"  > It may be noted that option with least priority will only reflects the area of less attention as compare to other options </div> <br /><br /><br />
             <asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder><br />
              <asp:Label ID="lblParam1" runat="server" Text="" CssClass="mybox" /> <br /><br /><br />
             <asp:Label ID="lblQue11" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList11" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue12" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList12" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue13" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList13" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue14" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList14" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue15" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList15" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
            <br />
             <asp:Label ID="lblParam2" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue21" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList21" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue22" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList22" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue23" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList23" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue24" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList24" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
              <asp:Label ID="lblQue25" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList25" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False"  /><br />
            <br />
             <asp:Label ID="lblParam3" runat="server" Text="" CssClass="mybox" /><br /><br /><br />
             <asp:Label ID="lblQue31" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList31" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue32" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList32" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue33" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList33" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue34" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList34" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
              <asp:Label ID="lblQue35" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList35" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
            <br />
             <asp:Label ID="lblParam4" runat="server" Text="" CssClass="mybox" /><br /><br /><br />
             <asp:Label ID="lblQue41" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList41" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue42" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList42" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue43" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList43" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue44" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList44" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue45" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList45" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
           <br />
             <asp:Label ID="lblParam5" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue51" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList51" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue52" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList52" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue53" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList53" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue54" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList54" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue55" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList55" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
            <br />
             <asp:Label ID="lblParam6" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue61" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList61" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue62" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList62" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue63" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList63" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue64" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList64" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue65" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList65" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
            <br />
             <asp:Label ID="lblParam7" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue71" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList71" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue72" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList72" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue73" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList73" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue74" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList74" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False"  /><br />
              <asp:Label ID="lblQue75" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList75" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
           <br />
             <asp:Label ID="lblParam8" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue81" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList81" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue82" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList82" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue83" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList83" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue84" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList84" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False"  /><br />
              <asp:Label ID="lblQue85" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList85" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False"  /><br />
            <br />
             <asp:Label ID="lblParam9" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue91" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList91" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue92" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList92" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue93" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList93" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue94" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList94" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue95" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList95" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
<br />
             <asp:Label ID="lblParam10" runat="server" Text="" CssClass="mybox"/><br /><br /><br />
             <asp:Label ID="lblQue101" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList101" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
                 <asp:Label ID="lblQue102" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList102" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue103" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList103" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" /><br />
              <asp:Label ID="lblQue104" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList104" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False"  /><br />
              <asp:Label ID="lblQue105" runat="server" Text="" /><br />
              <asp:RadioButtonList ID="RadioButtonList105" runat="server"  RepeatDirection="Horizontal" AutoPostBack="True" Visible="False" /><br />
            <br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
             &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <asp:Button ID="btnSubmit3" runat="server" Text="Final Submit" /> <br /><br /><br /><br /><br />
              </asp:Panel><br />
         <asp:Panel ID="Panel4" runat="server" Visible="false" ><br />
              <img src="images/100.png" width ="250px" /><br />
               <div class="myhead"  >Success</div> <br />  <br />
             <asp:Label ID="Label1" runat="server" Text="Data Submitted Succesfully, Thanks For Giving Time For Survey"></asp:Label><br />
           </asp:Panel><br />
     

Code behind:

Comments