Asp Control ASP.Net

<%@ Page Language="VB" %>



    
        Sub NextButton_Command(sender As Object, e As System.EventArgs)
            If (DevPollMultiView.ActiveViewIndex > -1) AND DevPollMultiView.ActiveViewIndex < 3 Then
                DevPollMultiView.ActiveViewIndex += 1
            ElseIf DevPollMultiView.ActiveViewIndex = 3 Then
                Page4Save.Enabled = False
                Page4Restart.Enabled = False
            Else
                Throw New Exception("An error occurred.")
            End If
        End Sub
        Sub BackButton_Command(ByVal sender As Object, ByVal e As System.EventArgs)
            If (DevPollMultiView.ActiveViewIndex > 0) And DevPollMultiView.ActiveViewIndex <= 2 Then
                DevPollMultiView.ActiveViewIndex -= 1
            ElseIf DevPollMultiView.ActiveViewIndex = 3 Then
                DevPollMultiView.ActiveViewIndex = 0
            Else
                Throw New Exception("An error occurred.")
            End If
        End Sub



    
        

MultiView ActiveViewIndex Example


                    Width="330px" 
            Height="150px"
            HorizontalAlign =Left
            Font-size="12" 
            BackColor="#C0C0FF" 
            BorderColor="#404040"
            BorderStyle="Double"                     
            runat="Server">  
                            ActiveViewIndex=0
                runat="Server">
                                    runat="Server">   
                                            Font-bold="true"                         
                        Text="What kind of applications do you develop?"
                        runat="Server">
                    


                                             Text="Web Applications" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="server" >
                    

                                             Text="Windows Forms Applications" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="server" >
                     


                                       
                     
                                            Text = "Next"
                        OnClick="NextButton_Command"
                        Height="25"
                        Width="70"
                        runat= "Server">
                         
                          
                
                                    runat="Server">
                                            Font-bold="true"                        
                        Text="How long have you been a developer?"
                        runat="Server">                    
                    


                                             Text="Less than five years" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="Server">
                     

                                             Text="More than five years" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="Server">
                     



                                            Text = "Previous"
                        OnClick="BackButton_Command"
                        Height="25"
                        Width="70"
                        runat= "Server">
                     
                                            Text = "Next"
                        OnClick="NextButton_Command"
                        Height="25"
                        Width="70"
                        runat="Server">
                     
                
                
                                    runat="Server">
                                            Font-bold="true"                        
                        Text= "What is your primary programming language?"                        
                        runat="Server">                    
                    


                                             Text="Visual Basic .NET" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="Server">
                     

                                             Text="C#" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="Server">
                     

                                             Text="C++" 
                         Checked="False" 
                         GroupName="RadioGroup1" 
                         runat="Server">
                     


                                             Text = "Previous"
                        OnClick="BackButton_Command"
                        Height="25"
                        Width="70"
                        runat="Server">
                     
                                            Text = "Next"
                        OnClick="NextButton_Command"
                        Height="25"
                        Width="70"
                        runat="Server">
                    

                    
                     
            
                                    runat="Server">
                    
                                            Font-bold="true"                                           
                        Text = "Thank you for taking the survey."
                        runat="Server">
                    
                    
                    





              
                   
                                            Text = "Save Responses"
                        OnClick="NextButton_Command"
                        Height="25"
                        Width="110"
                        runat="Server">
                    
                
                                            Text = "Retake Survey"
                        OnClick="BackButton_Command"
                        Height="25"
                        Width="110"
                        runat= "Server">