Link to home
Start Free TrialLog in
Avatar of gianitoo
gianitoo

asked on

pleae this is urgent help!!!! multiview page inside updatepanel

i have a multiview page inside an updatepanel
i have 5 views inside the multiview

the next button is at the bottom of the each view and everytime i click next it does not go to the top of the next view.  it stays in the same position which is usually the middle of the page.  is there a fix for this?
ASKER CERTIFIED SOLUTION
Avatar of samtran0331
samtran0331
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gianitoo
gianitoo

ASKER

ok let me try
ok i have now  5 update panels.   each view has its own update panel
when i hit next  in view one to go to view 2   it created a window error that said
could not find update panel 2 .  if it is updated dynamicaly it has to be inside another update panel.

do i have to use triggers or something?  

<%@ Page Language="VB"     %>
 
<%@ Register Assembly="eWorld.UI, Version=2.0.6.2393, Culture=neutral, PublicKeyToken=24d65337282035f2"
    Namespace="eWorld.UI" TagPrefix="ew" %>
 
 
 
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace="System.Web.UI" TagPrefix="asp" %>
 
 
 
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<script runat="server">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
 
    End Sub
 
    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
       
    End Sub
 
    Protected Sub LinkButton4_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 1
    End Sub
 
    Protected Sub LinkButton3_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 2
    End Sub
    Protected Sub LinkButton2_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 3
    End Sub
 
    Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 4
    End Sub
    
    Protected Sub LinkButton7_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 1
    End Sub
 
    Protected Sub LinkButton6_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 2
    End Sub
    Protected Sub LinkButton5_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 3
    End Sub
    
    Protected Sub LinkButton22_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 1
    End Sub
    Protected Sub LinkButton8_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 2
    End Sub
    
    Protected Sub LinkButton10_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 1
    End Sub
 
    Protected Sub LinkButton12_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 1
    End Sub
 
    Protected Sub LinkButton11_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 2
    End Sub
 
    Protected Sub LinkButton23_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 2
    End Sub
 
    Protected Sub LinkButton24_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 3
    End Sub
 
    Protected Sub LinkButton25_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 4
    End Sub
 
    Protected Sub LinkButton18_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 1
    End Sub
 
    Protected Sub LinkButton19_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 2
    End Sub
 
    Protected Sub LinkButton20_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 3
    End Sub
 
    Protected Sub LinkButton15_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 1
    End Sub
 
    Protected Sub LinkButton16_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex += 2
    End Sub
 
    Protected Sub LinkButton9_Click(ByVal sender As Object, ByVal e As System.EventArgs)
        MultiView1.ActiveViewIndex -= 1
    End Sub
 
    Protected Sub jmiupdates1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
        If jmiupdates1.SelectedValue = "No" Then
            Panel1.Visible = True
        Else
            Panel1.Visible = False
        End If
    End Sub
 
    Protected Sub jmiupdates2_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
        If jmiupdates2.SelectedValue = "Yes" Then
            Panel2.Visible = True
        Else
            Panel2.Visible = False
        End If
    End Sub
 
    Protected Sub RBL_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim RBL As RadioButtonList
        RBL = CType(sender, RadioButtonList)
        If RBL.SelectedItem.Text = "1" Or RBL.SelectedItem.Text = "2" Then
            Me.Panel3.Visible = True
       
            
        End If
    End Sub
 
    Protected Sub ImageButton5_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs)
        Response.Redirect("espnconfirmation.aspx")
    End Sub
 
    Protected Sub trackbenefits_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs)
 
    End Sub
</script>
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>ESPN Survey</title>
<style type="text/css">
<!--
body {
	background-image: url(images/background.jpg);
	margin-top: 25px;
	background-color: #C2C2C2;
	background-repeat: repeat-x;
}
    .style3 {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 23px;
        color: #000000;
        text-align: left;
    }
.style8 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #666666;
        text-align: center;
    }
    
.style9 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #666666;
	line-height: 25px;
        text-align: left;
    }
.style10 {color: #FF6600;
        text-align: center;
    }
.graylink {color: #464646}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
 
.servicesT
{ 
 
border: 10px #dddddd solid;
border-collapse: collapse;
border-spacing: 0px;
margin-top: 0px;}
 
    .style11
    {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: normal;
        color: #666666;
        line-height: 25px;
        text-align: center;
        height: 10px;
    }
 
 
 
    .style13
    {
        height: 30px;
        
    }
 
 
 
    .whiteradio {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #ffffff;
}
    
 
 
-->
</style>
 
</head>
 
<body >
<div align="center">
  <table border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td align="left" valign="top"><div align="left"><img src="images/header_logos.gif" width="266" height="69" /><br />
        <br />
          <br />
      </div></td>
    </tr>
    <tr>
      <td&nbsp;</td>
    </tr>
    <tr>
      <td><table width="100%" border="0" cellpadding="10" cellspacing="0" >
        <tr>
          <td>      <form id="Form1" runat="server">    
                     
                        <asp:ScriptManager ID="ScriptManager1" runat="server">
                        </asp:ScriptManager>
                       
                                <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
                                    <table width="100%" border="0" cellpadding="30" 
        cellspacing="0" >
                                        <tr>
                                            <td align="left" valign="top">
                                           
                                                <asp:View ID="View1" 
                      runat="server">
                                                    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                                                    <ContentTemplate>
                                                    <table cellpadding="30" bgcolor="White" class="servicesT" width="700">
                                                        <tr>
                                                            <td>
                                                                <table bgcolor="White" cellpadding="0" cellspacing="5" 
                                                                 
                                                                    width="100%">
                                                                    <tr>
                                                                        <td align="center" class="style8" colspan="2" valign="middle">
                                                                            <div align="center">
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td class="style8" colspan="2">
                                                                            <asp:LinkButton ID="LinkButton21" runat="server" CssClass="style10" 
                                                                                OnClick="LinkButton10_Click">Welcome</asp:LinkButton>
                                                                            &nbsp;<asp:LinkButton ID="LinkButton22" runat="server" CssClass="graylink" 
                                                                                OnClick="LinkButton22_Click">Event</asp:LinkButton>
                                                                            &nbsp;
                                                                            <asp:LinkButton ID="LinkButton23" runat="server" CssClass="graylink" 
                                                                                OnClick="LinkButton23_Click">Planning</asp:LinkButton>
                                                                            &nbsp;<asp:LinkButton ID="LinkButton24" runat="server" CssClass="graylink" 
                                                                                OnClick="LinkButton24_Click">Service</asp:LinkButton>
                                                                            &nbsp;<asp:LinkButton ID="LinkButton25" runat="server" CssClass="graylink" 
                                                                                OnClick="LinkButton25_Click">Comments</asp:LinkButton>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td class="style3">
                                                                            Welcome<br />
                                                                        </td>
                                                                        <td align="center" valign="middle" width="69%">
                                                                            <div align="right"> <asp:Image ID="Image1" runat="server" Height="27px" 
                                                                                    ImageUrl="~/images/espn_logo.gif" Width="134px" />
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td class="style9" colspan="2">
                                                                            This survey is designed to understand, evaluate and improve your display 
                                                                            program.&nbsp;
                                                                            <br />
                                                                            All surveys are confidential and no members of the JMI Account Team will see 
                                                                            them.&nbsp;
                                                                            <br />
                                                                            &nbsp;<asp:ValidationSummary ID="ValidationSummary1" runat="server" 
                                                                                CssClass="style10" DisplayMode="SingleParagraph" ForeColor="" 
                                                                                HeaderText="Please complete all questions with an *" />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td width="31%">&nbsp;
                                                                            </td>
                                                                        <td align="center" valign="middle">
                                                                            <div align="center">
                                                                                <br />
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" valign="middle">
                                                                            <div align="left">
                                                                                <span class="style9" style="line-height: 30px;">Name</span></div>
                                                                        </td>
                                                                        <td align="center" valign="middle">
                                                                            <div align="center" style="text-align: left">
                                                                                <asp:TextBox ID="name" runat="server" TabIndex="1"></asp:TextBox>
                                                                                <asp:RequiredFieldValidator ID="RequiredFieldValidator48" runat="server" 
                                                                                    ControlToValidate="name" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                            </div>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" colspan="2" valign="middle">
                                                                            <hr noshade="noshade" size="1" />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" valign="middle">
                                                                            <div align="left">
                                                                                Affiliation/Position</div>
                                                                        </td>
                                                                        <td align="center" style="text-align: left" valign="middle">
                                                                            <asp:TextBox ID="position" runat="server" TabIndex="2"></asp:TextBox>
                                                                            <asp:RequiredFieldValidator ID="RequiredFieldValidator49" runat="server" 
                                                                                ControlToValidate="position" CssClass="style10" ErrorMessage="" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" colspan="2" valign="middle">
                                                                            <hr noshade="noshade" size="1" />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" colspan="2" valign="middle">
                                                                            If you wish to be contacted concerning this survey, please include the following 
                                                                            information:<br />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" valign="middle">
                                                                            <div align="left">
                                                                                Phone</div>
                                                                        </td>
                                                                        <td align="center" style="text-align: left" valign="middle">
                                                                            <ew:MaskedTextBox ID="phone" runat="server" Mask="(999) 999-9999" TabIndex="3" 
                                                                                ValidationExpression="((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}" 
                                                                                Height="22px" />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" colspan="2" valign="middle">
                                                                            <hr noshade="noshade" size="1" />
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" valign="middle">
                                                                            <div align="left">
                                                                                Email</div>
                                                                        </td>
                                                                        <td align="center" style="text-align: left" valign="middle">
                                                                            <asp:TextBox ID="email" runat="server" Width="217px" TabIndex="4"></asp:TextBox>
                                                                            <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" 
                                                                                ControlToValidate="email" CssClass="style10" ForeColor="" 
                                                                                ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*">Valid email format 
                                                                            required</asp:RegularExpressionValidator>
                                                                        </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td align="left" class="style9" colspan="2" valign="middle">&nbsp;
                                                                            </td>
                                                                    </tr>
                                                                    <tr>
                                                                        <td class="style9" colspan="2">
                                                                            <table border="0" cellpadding="15" cellspacing="0" width="100%">
                                                                                <tr>
                                                                                    <td align="right" class="style1" valign="middle" width="50%">
                                                                                        <div align="right">
                                                                                        </div>
                                                                                    </td>
                                                                                    <td align="left" class="style1" valign="middle">
                                                                                        <div align="left">
                                                                                            <asp:ImageButton ID="ImageButton1" runat="server" CommandName="NextView" 
                                                                                                ImageUrl="~/images/nextup.gif" />
                                                                                        </div>
                                                                                    </td>
                                                                                </tr>
                                                                            </table>
                                                                        </td>
                                                                    </tr>
                                                                </table>
                                                            </td>
                                                        </tr>
                                                    </table>
                                                    </ContentTemplate>
                                                    </asp:UpdatePanel>
                                                    
                                                </asp:View>
                                 
                                                <p>
                                                    <br />
                                                    <asp:View ID="View2" runat="server">
                                                        <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                                                        <ContentTemplate>
                                                        <table cellpadding="30" bgcolor="White" class="servicesT" width="700">
                                                        <tr>
                                                            <td>
                                                        <table width="100%" border="0" cellspacing="5" cellpadding="0" bgcolor="White">
                                                            <tr>
                                                                <td colspan="2" align="center" valign="middle" class="style8">
                                                                    <div align="center">
                                                                        <asp:LinkButton ID="LinkButton10" runat="server" CausesValidation="False" 
                            OnClick="LinkButton10_Click" CssClass="style10">Welcome</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton17" runat="server" 
                            OnClick="LinkButton9_Click" CssClass="style10">Event</asp:LinkButton>
                                                                        &nbsp;
                                                                        <asp:LinkButton ID="LinkButton19" runat="server" OnClick="LinkButton19_Click" 
                            CssClass="graylink">Planning</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton18" runat="server" 
                            OnClick="LinkButton18_Click" CssClass="graylink">Service</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton20" runat="server" 
                            OnClick="LinkButton20_Click" CssClass="graylink">Comments</asp:LinkButton>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style8">
                                                                    <asp:ValidationSummary ID="ValidationSummary2" runat="server" 
                            CssClass="style10" DisplayMode="SingleParagraph" ForeColor="" 
                            HeaderText="Please complete all questions with an *" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style3">
                                                                    Event Display<br />
                                                                </td>
                                                                <td width="69%" align="left" valign="middle" class="style9">
                                                                   
                                                                    <asp:Image ID="Image5" runat="server" Height="27px" ImageAlign="Right" 
                                                                        ImageUrl="~/images/espn_logo.gif" Width="134px" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td width="31%">&nbsp;
                                                                    </td>
                  <td width="69%" align="left" valign="middle" class="style9">
                                                                     &nbsp; Excellent&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Good&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Fair&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Poor&nbsp;&nbsp;&nbsp; Unacceptable&nbsp;&nbsp;&nbsp; N/A&nbsp;</td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle">
                                                                    <div align="left">
                                                                        <span class="style9" style="line-height: 30px;">Location
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator50" runat="server" 
                                ControlToValidate="displaylocation3" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        </span>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation3" runat="server" CssClass="whiteradio" 
                                RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged">
                                                                            <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" class="style9" colspan="2" valign="middle">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Appearance
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator51" runat="server" 
                            ControlToValidate="displaylocation4" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation4" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Size of Footprint
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator52" runat="server" 
                            ControlToValidate="displaylocation5" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation5" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Content/Signage
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator53" runat="server" 
                            ControlToValidate="displaylocation6" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation6" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Fan Interaction
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator54" runat="server" 
                            ControlToValidate="displaylocation7" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation7" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Quality of Kiosks
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator55" runat="server" 
                            ControlToValidate="displaylocation8" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation8" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Quality of dot.com 
                        station
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator56" runat="server" 
                            ControlToValidate="displaylocation9" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation9" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr size="1" noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Brand Ambassador 
                        Apprearance
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator57" runat="server" 
                            ControlToValidate="displaylocation10" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation10" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style9">
                                                                    <hr size="1" 
                            noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Brand Ambassador
                                                                    <br />
                                                                    Knowledge
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator58" runat="server" 
                            ControlToValidate="displaylocation11" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation11" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style9">
                                                                    <hr size="1" 
                            noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Brand Ambassador Friendliness
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator59" runat="server" 
                            ControlToValidate="displaylocation12" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation12" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style9">
                                                                    <hr size="1" 
                            noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Brand Ambassador Professionalism
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator60" runat="server" 
                            ControlToValidate="displaylocation13" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation13" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style9">
                                                                    <hr size="1" 
                            noshade="noshade" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Overall Quality of
                                                                    <br />
                                                                    Experience
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator61" runat="server" 
                                                                        ControlToValidate="displaylocation14" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="top">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation14" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">&nbsp;
                                                                    </td>
                                                                <td align="center" valign="middle">&nbsp;
                                                                    </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style3" colspan="2">
                                                                    Radio Broadcast</td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Location
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator62" runat="server" 
                            ControlToValidate="displaylocation15" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="top">
                                                                    <asp:RadioButtonList ID="displaylocation15" runat="server" 
                            RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                            CssClass="whiteradio"  AutoPostBack="True" 
                            onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                    </asp:RadioButtonList>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Appereance
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator63" runat="server" 
                                ControlToValidate="displaylocation16" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="top">
                                                                    <asp:RadioButtonList ID="displaylocation16" runat="server" 
                                RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                CssClass="whiteradio"  AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                    </asp:RadioButtonList>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Size of Footprint
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator64" runat="server" 
                                ControlToValidate="displaylocation17" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="top">
                                                                    <asp:RadioButtonList ID="displaylocation17" runat="server" 
                                RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                CssClass="whiteradio"  AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                    </asp:RadioButtonList>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9">
                                                                    Content Signage
                                                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator65" runat="server" 
                                ControlToValidate="displaylocation18" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                </td>
                                                                <td align="center" valign="top">
                                                                    <asp:RadioButtonList ID="displaylocation18" runat="server" 
                                RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                CssClass="whiteradio"  AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                    </asp:RadioButtonList>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">&nbsp;
                                                                    </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <table border="0" cellpadding="15" cellspacing="0" width="100%">
                                                                        <tr>
                                                                            <td align="left" class="style8" valign="middle">
                                                                                <div align="right">
                                                                                    <asp:ImageButton ID="ImageButton6" runat="server" CausesValidation="False" 
                                                CommandName="PrevView" ImageUrl="~/images/prevup.gif" />
                                                                                </div>
                                                                            </td>
                                                                            <td align="right" class="style8" valign="middle">
                                                                                <div align="left">
                                                                                    <asp:ImageButton ID="ImageButton2" runat="server" CommandName="NextView" 
                                                ImageUrl="~/images/nextup.gif" />
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                          </td>
                                                        </tr>
                                                    </table>
                                                    </ContentTemplate>
                                                        </asp:UpdatePanel>   
                                                    </asp:View>
                                                    <p>&nbsp;
                                                        </p>
                                                    <asp:View ID="View3" runat="server">
                                                        <asp:UpdatePanel ID="UpdatePanel3" runat="server">
                                                        <ContentTemplate>
                                                       <table cellpadding="30" bgcolor="White" class="servicesT" width="700">
                                                        <tr>
                                                            <td>
                                                        <table width="100%" border="0" cellspacing="5" cellpadding="0" bgcolor="White">
                                                            <tr>
                                                                <td colspan="2" align="center" valign="middle" class="style8">
                                                                    <div align="center" class="style10" 
                            >
                                                                        <asp:LinkButton ID="LinkButton8" runat="server" CausesValidation="False" 
                                OnClick="LinkButton8_Click" CssClass="style10">Welcome</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton9" runat="server" CausesValidation="False" 
                                OnClick="LinkButton9_Click" CssClass="style10">Event</asp:LinkButton>
                                                                        &nbsp;
                                                                        <asp:LinkButton ID="LinkButton14" runat="server" CssClass="style10">Planning</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton15" runat="server" 
                                OnClick="LinkButton15_Click" CssClass="graylink">Service</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton16" runat="server" 
                                OnClick="LinkButton16_Click" CssClass="graylink">Comments</asp:LinkButton>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style8">
                                                                    <asp:ValidationSummary ID="ValidationSummary3" runat="server" 
                            CssClass="style10" DisplayMode="SingleParagraph" ForeColor="" 
                            HeaderText="Please complete all questions with an *" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style3">
                                                                    Planning<br />
                                                                </td>
                                                                <td align="center" valign="middle" width="69%">
                                                                    <div align="right">
                                                                        <asp:Image ID="Image2" runat="server" Height="27px" 
                                                                            ImageUrl="~/images/espn_logo.gif" Width="134px" />
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td width="31%">&nbsp;
                                                                    </td>
                                                                <td align="center" valign="middle">&nbsp;
                                                                    </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" colspan="2" valign="middle">
                                                                    <div align="left" class="style9">
                                                                        Did JMI provide sufficient updates on your event during the planning phase?
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator66" runat="server" 
                                ControlToValidate="jmiupdates" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        &nbsp;<asp:RadioButtonList ID="jmiupdates" runat="server" 
                                RepeatDirection="Horizontal">
                                                                            <asp:ListItem>Yes</asp:ListItem>
                                                                            <asp:ListItem>No</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" colspan="2" class="style9">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" colspan="2" class="style9">
                                                                    <div align="left">
                                                                        Did JMI solve/answer your questions or concerns in a timely manner?
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
                                ControlToValidate="jmiupdates0" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        <asp:RadioButtonList 
                                ID="jmiupdates0" runat="server" RepeatDirection="Horizontal">
                                                                            <asp:ListItem>Yes</asp:ListItem>
                                                                            <asp:ListItem>No</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                       </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <div align="left">
                                                                        Did JMI demonstrate a good understanding of your business?
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" 
                                ControlToValidate="jmiupdates1" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        <asp:RadioButtonList 
                                ID="jmiupdates1" runat="server" RepeatDirection="Horizontal" 
                                AutoPostBack="True" 
                                onselectedindexchanged="jmiupdates1_SelectedIndexChanged">
                                                                            <asp:ListItem>Yes</asp:ListItem>
                                                                            <asp:ListItem>No</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                        <asp:Panel ID="Panel1" runat="server" Visible="False">
                                                                            If no, why not?<br />
                                                                            &nbsp;<asp:TextBox ID="TextBox1" runat="server" Height="75px" TextMode="MultiLine" 
                                    Width="315px"></asp:TextBox>
                                                                            <asp:RequiredFieldValidator ID="RequiredFieldValidator76" runat="server" 
                                                                                ControlToValidate="TextBox1" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        </asp:Panel>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <div align="left">
                                                                        Any areas where JMI can provide additional support to plan/execute your program?
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" 
                                ControlToValidate="jmiupdates2" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        <asp:RadioButtonList 
                                ID="jmiupdates2" runat="server" RepeatDirection="Horizontal" 
                                AutoPostBack="True" 
                                onselectedindexchanged="jmiupdates2_SelectedIndexChanged">
                                                                            <asp:ListItem>Yes</asp:ListItem>
                                                                            <asp:ListItem>No</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                        <asp:Panel ID="Panel2" runat="server" Visible="False">
                                                                            If yes, how?&nbsp;<br />
                                                                            &nbsp;<asp:TextBox ID="TextBox2" runat="server" Height="75px" TextMode="MultiLine" 
                                    Width="315px"></asp:TextBox>
                                                                            <asp:RequiredFieldValidator ID="RequiredFieldValidator75" runat="server" 
                                                                                ControlToValidate="TextBox2" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        </asp:Panel>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style11" colspan="2">
                                                                    <div align="left">
                                                                        Overall rating for Pre-Event Planning
&nbsp;<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" 
                                ControlToValidate="jmirating" CssClass="style10"  ForeColor="">*</asp:RequiredFieldValidator><br />
                                                                         &nbsp;Excellent&nbsp;&nbsp;&nbsp;Good&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Fair&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Poor&nbsp;&nbsp;&nbsp; Unacceptable&nbsp;&nbsp;&nbsp; N/A&nbsp;<asp:RadioButtonList ID="jmirating" 
                                runat="server" RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged" CssClass="whiteradio"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">&nbsp;
                                                                    </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <table border="0" cellpadding="15" cellspacing="0" width="100%">
                                                                        <tr>
                                                                            <td align="right" class="style8" valign="middle">
                                                                                <div align="right">
                                                                                    <asp:ImageButton ID="ImageButton7" runat="server" CausesValidation="False" 
                                            CommandName="PrevView" ImageUrl="~/images/prevup.gif" />
                                                                                </div>
                                                                            </td>
                                                                            <td align="left" class="style8" valign="middle">
                                                                                <div align="left">
                                                                                    <asp:ImageButton ID="ImageButton3" runat="server" CommandName="NextView" 
                                            ImageUrl="~/images/nextup.gif" />
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                          </td>
                                                        </tr>
                                                    </table>
                                                      </ContentTemplate>  </asp:UpdatePanel>     
                                                    </asp:View>
                                                    <p>&nbsp;
                                                        </p>
                                                    <asp:View ID="View4" runat="server">
                                                        <asp:UpdatePanel ID="UpdatePanel4" runat="server">
                                                        <ContentTemplate><table cellpadding="30" bgcolor="White" class="servicesT" width="700">
                                                        <tr>
                                                            <td>
                                                        <table border="0" cellspacing="5" cellpadding="0" bgcolor="White" style="width: 100%">
                                                            <tr>
                                                                <td colspan="2" align="center" valign="middle" class="style8">
                                                                    <div align="center">
                                                                        <asp:LinkButton ID="LinkButton5" 
                                                runat="server" OnClick="LinkButton5_Click" 
                                                CausesValidation="False" CssClass="style10">Welcome</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton6" runat="server" 
                                                OnClick="LinkButton6_Click" CausesValidation="False" 
                            CssClass="style10">Event</asp:LinkButton>
                                                                        &nbsp;
                                                                        <asp:LinkButton ID="LinkButton7" runat="server" 
                            OnClick="LinkButton7_Click" CausesValidation="False" CssClass="style10">Planning</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton11" runat="server" 
                            OnClick="LinkButton11_Click" CssClass="style10">Service</asp:LinkButton>
                                                                        &nbsp;<asp:LinkButton ID="LinkButton12" runat="server" 
                            OnClick="LinkButton12_Click" CssClass="graylink">Comments</asp:LinkButton>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style8">
                                                                    <asp:ValidationSummary ID="ValidationSummary4" runat="server" 
                            CssClass="style10" DisplayMode="SingleParagraph" ForeColor="" 
                            HeaderText="Please complete all questions with an *" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style3">
                                                                    Service<br />
                                                                </td>
                                                                <td align="center" class="style13" valign="middle" width="69%">
                                                                    <div align="right">
                                                                        <asp:Image ID="Image3" runat="server" Height="27px" 
                                                                            ImageUrl="~/images/espn_logo.gif" Width="134px" />
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td width="31%">&nbsp;
                                                                    </td>
                                                                <td align="left" class="style9" >
                                                                    &nbsp; Excellent&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Good&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Fair&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Poor&nbsp;&nbsp;&nbsp; Unacceptable&nbsp;&nbsp;&nbsp; N/A&nbsp;</td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle">
                                                                    <div align="left">
                                                                        <span class="style9" style="line-height: 30px;">JMI Staff Friendliness
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator67" runat="server" 
                                ControlToValidate="displaylocation23" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                        </span>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation23" runat="server" CssClass="whiteradio"  
                                RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                AutoPostBack="True" 
                                onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        JMI Staff Knowledge
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator68" runat="server" 
                                ControlToValidate="displaylocation24" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation24" runat="server" CssClass="whiteradio"  
                                  RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                  AutoPostBack="True" 
                                  onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        JMI Staff Service
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator69" runat="server" 
                                ControlToValidate="displaylocation25" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation25" runat="server" CssClass="whiteradio"  
                                  RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                  AutoPostBack="True" 
                                  onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        JMI Staff Professionalism
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator70" runat="server" 
                                ControlToValidate="displaylocation26" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation26" runat="server" CssClass="whiteradio"  
                                  RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                  AutoPostBack="True" 
                                  onselectedindexchanged="RBL_SelectedIndexChanged"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Overall JMI Rating for Execution
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator71" runat="server" 
                                ControlToValidate="displaylocation27" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="displaylocation27" runat="server" CssClass="whiteradio"  
                                  RepeatDirection="Horizontal" TextAlign="Left" Width="403px" 
                                  onselectedindexchanged="RBL_SelectedIndexChanged" 
                                  AutoPostBack="True"> <asp:ListItem Value="5">-</asp:ListItem>
                                                                            <asp:ListItem Value="4">-</asp:ListItem>
                                                                            <asp:ListItem Value="3">-</asp:ListItem>
                                                                            <asp:ListItem Value="2">-</asp:ListItem>
                                                                            <asp:ListItem Value="1">-</asp:ListItem>
                                                                            <asp:ListItem Value="N/A">-</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <div align="left" class="style3">
                                                                        <br />
                                                                        Business Impact</div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" align="left" valign="middle" class="style9">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        The ESPN/DIRECTV Experience has impacted my business:
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator72" runat="server" 
                                ControlToValidate="businessimpact" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="businessimpact" runat="server" CssClass="style9" 
                                  RepeatDirection="Horizontal" Width="342px">
                                                                            <asp:ListItem>Positively</asp:ListItem>
                                                                            <asp:ListItem>Neutrally</asp:ListItem>
                                                                            <asp:ListItem Value="Negatively">Negatively</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9" colspan="2">
                                                                    <hr noshade="noshade" size="1" />
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td align="left" valign="middle" class="style9">
                                                                    <div align="left">
                                                                        Because of the ESPN/DIRECTV Experience, viewership/sales have: 
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator73" runat="server" 
                                ControlToValidate="businesssales" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </div>
                                                                </td>
                                                                <td align="center" valign="middle">
                                                                    <div align="center">
                                                                        <asp:RadioButtonList ID="businesssales" runat="server" CssClass="style9" 
                                  RepeatDirection="Horizontal" Width="350px">
                                                                            <asp:ListItem>Increased</asp:ListItem>
                                                                            <asp:ListItem>Not Changed</asp:ListItem>
                                                                            <asp:ListItem Value="Declined">Declined</asp:ListItem>
                                                                        </asp:RadioButtonList>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">&nbsp;
                                                                    </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <table border="0" cellpadding="15" cellspacing="0" width="100%">
                                                                        <tr>
                                                                            <td align="right" class="style8" valign="middle">
                                                                                <div align="right">
                                                                                    <asp:ImageButton ID="ImageButton8" runat="server" CausesValidation="False" 
                                            CommandName="PrevView" ImageUrl="~/images/prevup.gif" />
                                                                                </div>
                                                                            </td>
                                                                            <td align="left" class="style8" valign="middle">
                                                                                <div align="left">
                                                                                    <asp:ImageButton ID="ImageButton4" runat="server" CommandName="NextView" 
                                            ImageUrl="~/images/nextup.gif" />
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                          </td>
                                                        </tr>
                                                    </table></ContentTemplate>
                                                        </asp:UpdatePanel>  
                                                    </asp:View>
                                                    <p>&nbsp;
                                                        </p>
                                                    <asp:View ID="View5" runat="server">
                                                        <asp:UpdatePanel ID="UpdatePanel5" runat="server" UpdateMode="Conditional">
                                                        <ContentTemplate><table cellpadding="30" bgcolor="White" class="servicesT" width="700">
                                                        <tr>
                                                            <td>
                                                        <table width="100%" border="0" cellspacing="5" cellpadding="0" bgcolor="White">
                                                            <tr>
                                                                <td colspan="2" align="center" valign="middle" class="style8">
                                                                    <asp:LinkButton ID="LinkButton1" runat="server" OnClick="LinkButton1_Click" 
                             CausesValidation="False" CssClass="style10">Welcome</asp:LinkButton>
                                                                    &nbsp;<asp:LinkButton ID="LinkButton2" runat="server" 
                                                OnClick="LinkButton2_Click" CausesValidation="False" 
                             CssClass="style10">Event</asp:LinkButton>
                                                                    &nbsp;
                                                                    <asp:LinkButton ID="LinkButton3" runat="server" 
                             OnClick="LinkButton3_Click" CausesValidation="False" CssClass="style10">Planning</asp:LinkButton>
                                                                    &nbsp;
                                                                    <asp:LinkButton ID="LinkButton4" runat="server" 
                             OnClick="LinkButton4_Click" CausesValidation="False" CssClass="style10" >Service</asp:LinkButton>
                                                                    &nbsp;<asp:LinkButton ID="LinkButton13" runat="server" 
                             CssClass="style10">Comments</asp:LinkButton>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style8">
                                                                    <asp:ValidationSummary ID="ValidationSummary5" runat="server" 
                                                                        CssClass="style10" DisplayMode="SingleParagraph" ForeColor="" 
                                                                        HeaderText="Please complete all questions with an *" />
                                                                    </td>
                                                            </tr>
                                                            <tr valign="top">
                                                                <td class="style3">
                                                                    Comments<br />
                                                                </td>
                                                                <td width="69%" align="center" valign="middle">
                                                                    <div align="right">
                                                                        <asp:Image ID="Image4" runat="server" Height="27px" 
                                                                            ImageUrl="~/images/espn_logo.gif" Width="134px" />
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <asp:Panel ID="Panel3" runat="server" Visible="False">
                                                                        Please comment on any of the elements that were rated unacceptable or poor.<br />
&nbsp;<br />
                                                                        &nbsp;<asp:TextBox ID="racing2008" runat="server" Height="164px" 
                                                                            TextMode="MultiLine" Width="569px"></asp:TextBox>
                                                                        <asp:RequiredFieldValidator ID="RequiredFieldValidator74" runat="server" 
                                                                            ControlToValidate="racing2008" CssClass="style10" ForeColor="">*</asp:RequiredFieldValidator>
                                                                    </asp:Panel>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <br />
                                                                    Please list any additional  elements which could help you better 
                                                                    leverage the
                                                                    <br />
                                                                    experience at the events.
                                                                    <br />
                                                                    <br />
                                                                    <asp:TextBox ID="trackbenefits" runat="server" Height="164px" 
                                                                        TextMode="MultiLine" Width="569px" 
                                                                        ontextchanged="trackbenefits_TextChanged"></asp:TextBox>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td colspan="2" class="style9">
                                                                    Any other additional comments/suggestions?<br />
                                                                    <br />
                                                                    <asp:TextBox ID="comments" runat="server" Height="164px" TextMode="MultiLine" 
                                                                        Width="569px"></asp:TextBox>
                                                                </td>
                                                            </tr>
                                                            <tr>
                                                                <td class="style9" colspan="2">
                                                                    <table border="0" cellpadding="15" cellspacing="0" width="100%">
                                                                        <tr>
                                                                            <td align="right" class="style8" valign="middle">
                                                                                <div align="right">
                                                                                    <asp:ImageButton ID="ImageButton9" runat="server" CausesValidation="False" 
                                                                                        CommandName="PrevView" ImageUrl="~/images/prevup.gif" />
                                                                                </div>
                                                                            </td>
                                                                            <td align="left" class="style8" valign="middle">
                                                                                <div align="left">
                                                                                    <asp:ImageButton ID="ImageButton5" runat="server" Height="30px" 
                                                                                        ImageUrl="~/images/submit.gif" onclick="ImageButton5_Click" 
                                                                                        Width="112px" />
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                          </td>
                                                        </tr>
                                                    </table></ContentTemplate>
                                                        </asp:UpdatePanel>   
                                                    </asp:View>
                                                    <p>&nbsp;
                                                        </p>
                                                    <p>&nbsp;
                                                        </p>
                                                    <p>&nbsp;
                                                        </p>
                                                    <p>&nbsp;
                                                        </p>
                                            </td>
                                        </tr>
                                    </table>
                                </asp:MultiView>
                          
                     
                        <br />  <br /><br />
                              </form></td>
        </tr>
      </table></td>
    </tr>
  </table>
</div>
</body>
</html>

Open in new window

please help me....
please let me know if u dont know teh answer so i can find another solution somewhereelse.

thanks