ASP.NET2.0中的TabStrip

记得在ASP.NET1.1中有一个TabStrip的控件,当时觉得很好用,今天突然想到,于是在2.0里面死命的找,就是没有找到。但是发现了multiview这个控件,研究了一下代码:

<% @ Page Language = " C# "   %>

< html >
< head >
  
< script runat = " server " >

  
protected   void  NextButton_Command( object  sender, EventArgs e)
  
{
    
// Determine which button was clicked
    
// and set the ActiveViewIndex property to
    
// the view selected by the user.
    if (DevPollMultiView.ActiveViewIndex > -1 & DevPollMultiView.ActiveViewIndex < 3)
    
{
      
// Increment the ActiveViewIndex property 
      
// by one to advance to the next view.
      DevPollMultiView.ActiveViewIndex += 1;
    }

    
else if (DevPollMultiView.ActiveViewIndex == 3)
    
{
      
// This is the final view.
      
// The user wants to save the survey results.
      
// Insert code here to save survey results.
      
// Disable the navigation buttons.
      Page4Save.Enabled = false;
      Page4Restart.Enabled 
= false;
    }

    
else
    
{
      
throw new Exception("An error occurred.");
    }

  }


  
protected   void  BackButton_Command( object  sender, EventArgs e)
  
{
    
if (DevPollMultiView.ActiveViewIndex > 0 & DevPollMultiView.ActiveViewIndex <= 2)
    
{
      
// Decrement the ActiveViewIndex property
      
// by one to return to the previous view.
      DevPollMultiView.ActiveViewIndex -= 1;
    }

    
else if (DevPollMultiView.ActiveViewIndex == 3)
    
{
      
// This is the final view.
      
// The user wants to restart the survey.
      
// Return to the first view.
      DevPollMultiView.ActiveViewIndex = 0;
    }

    
else
    
{
      
throw new Exception("An error occurred.");
    }

  }


  
</ script >

</ head >
< body >
    
< form ID = " Form1 "  runat = " Server " >
        
        
< h3 > MultiView ActiveViewIndex Example </ h3 >
        
        
< asp:Panel id = " Page1ViewPanel "  
            Width
= " 330px "  
            Height
= " 150px "
            HorizontalAlign 
= Left
            Font
- size = " 12 "  
            BackColor
= " #C0C0FF "  
            BorderColor
= " #404040 "
            BorderStyle
= " Double "                      
            runat
= " Server " >   

            
< asp:MultiView id = " DevPollMultiView "
                ActiveViewIndex
= 0
                runat
= " Server " >

                
< asp:View id = " Page1 "  runat = " Server " >    

                    
< asp:Label id = " Page1Label "  
                        Font
- bold = " true "                          
                        Text
= " What kind of applications do you develop? "
                        runat
= " Server " >
                    
</ asp:Label >< br >< br >

                    
< asp:RadioButton id = " Page1Radio1 "
                         Text
= " Web Applications "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " server "   >
                    
</ asp:RadioButton >< br >

                    
< asp:RadioButton id = " Page1Radio2 "
                         Text
= " Windows Forms Applications "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " server "   >
                     
</ asp:RadioButton >< br >< br >< br >                                        
                     
                    
< asp:Button id = " Page1Next "
                        Text 
=   " Next "
                        OnClick
= " NextButton_Command "
                        Height
= " 25 "
                        Width
= " 70 "
                        runat
=   " Server " >
                    
</ asp:Button >      
                          
                
</ asp:View >

                
< asp:View id = " Page2 "  
                    runat
= " Server " >

                    
< asp:Label id = " Page2Label "  
                        Font
- bold = " true "                         
                        Text
= " How long have you been a developer? "
                        runat
= " Server " >                     
                    
</ asp:Label >< br >< br >

                    
< asp:RadioButton id = " Page2Radio1 "
                         Text
= " Less than five years "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " Server " >
                     
</ asp:RadioButton >< br >

                    
< asp:RadioButton id = " Page2Radio2 "
                         Text
= " More than five years "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " Server " >
                     
</ asp:RadioButton >< br >< br >< br >

                    
< asp:Button id = " Page2Back "
                        Text 
=   " Previous "
                        OnClick
= " BackButton_Command "
                        Height
= " 25 "
                        Width
= " 70 "
                        runat
=   " Server " >
                    
</ asp:Button >  

                    
< asp:Button id = " Page2Next "
                        Text 
=   " Next "
                        OnClick
= " NextButton_Command "
                        Height
= " 25 "
                        Width
= " 70 "
                        runat
= " Server " >
                    
</ asp:Button >  
                
                
</ asp:View >

                
< asp:View id = " Page3 "  
                    runat
= " Server " >

                    
< asp:Label id = " Page3Label1 "  
                        Font
- bold = " true "                         
                        Text
=   " What is your primary programming language? "                         
                        runat
= " Server " >                     
                    
</ asp:Label >< br >< br >

                    
< asp:RadioButton id = " Page3Radio1 "
                         Text
= " Visual Basic .NET "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " Server " >
                     
</ asp:RadioButton >< br >

                    
< asp:RadioButton id = " Page3Radio2 "
                         Text
= " C# "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " Server " >
                     
</ asp:RadioButton >< br >

                    
< asp:RadioButton id = " Page3Radio3 "
                         Text
= " C++ "  
                         Checked
= " False "  
                         GroupName
= " RadioGroup1 "  
                         runat
= " Server " >
                     
</ asp:RadioButton >< br >< br >

                     
< asp:Button id = " Page3Back "
                        Text 
=   " Previous "
                        OnClick
= " BackButton_Command "
                        Height
= " 25 "
                        Width
= " 70 "
                        runat
= " Server " >
                    
</ asp:Button >  

                    
< asp:Button id = " Page3Next "
                        Text 
=   " Next "
                        OnClick
= " NextButton_Command "
                        Height
= " 25 "
                        Width
= " 70 "
                        runat
= " Server " >
                    
</ asp:Button >< br >
                    
                
</ asp:View >      
            
                
< asp:View id = " Page4 "
                    runat
= " Server " >
                    
                    
< asp:Label id = " Label1 "
                        Font
- bold = " true "                                            
                        Text 
=   " Thank you for taking the survey. "
                        runat
= " Server " >
                    
</ asp:Label >
                    
                    
< br >< br >< br >< br >< br >< br >               
                   
                    
< asp:Button id = " Page4Save "
                        Text 
=   " Save Responses "
                        OnClick
= " NextButton_Command "
                        Height
= " 25 "
                        Width
= " 110 "
                        runat
= " Server " >
                    
</ asp:Button >
                
                    
< asp:Button id = " Page4Restart "
                        Text 
=   " Retake Survey "
                        OnClick
= " BackButton_Command "
                        Height
= " 25 "
                        Width
= " 110 "
                        runat
=   " Server " >
                    
</ asp:Button >                     
                    
                
</ asp:View >   
       
            
</ asp:MultiView >
        
        
</ asp:Panel >  

    
</ form >
</ body >
</ html >


如果把代码中的Button放在multiview标签的外面,并且指定对应的ActiveViewIndex就可以实现原来的tabStrip的效果。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值