欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Asp.net_多选项卡页面的创建

程序员文章站 2022-05-08 15:31:49
看了很多朋友还不会创建多选项卡的页面,特地总结了一下用法,很简单的一看便知。   1.首先下载ajaxcontroltookit包放置在bin目录下,刷新解决方案。   2.页面...
看了很多朋友还不会创建多选项卡的页面,特地总结了一下用法,很简单的一看便知。

 

1.首先下载ajaxcontroltookit包放置在bin目录下,刷新解决方案。

 

2.页面引入(.x)

 

 

[csharp] 

<%@ register assembly="ajaxcontroltoolkit" namespace="ajaxcontroltoolkit" tagprefix="asp" %>  

 

<%@ register assembly="ajaxcontroltoolkit" namespace="ajaxcontroltoolkit" tagprefix="asp" %>

3.控件调用(.aspx) 

 

 

[csharp] 

<asp:tabcontainer id="tc1" runat="server" activetabindex="0" width="100%">  

        <asp:tabpanel id="tp1" runat="server" headertext="选项卡1">  

            <contenttemplate>此处添加页面代码</contenttemplate>  

        </asp:tabpanel>  

        <asp:tabpanel id="tp2" runat="server" headertext="选项卡2">  

            <contenttemplate>此处添加页面代码</contenttemplate>  

        </asp:tabpanel>  

</asp:tabcontainer>  

 

<asp:tabcontainer id="tc1" runat="server" activetabindex="0" width="100%">

        <asp:tabpanel id="tp1" runat="server" headertext="选项卡1">

            <contenttemplate>此处添加页面代码</contenttemplate>

        </asp:tabpanel>

        <asp:tabpanel id="tp2" runat="server" headertext="选项卡2">

            <contenttemplate>此处添加页面代码</contenttemplate>

        </asp:tabpanel>

</asp:tabcontainer>

activetabindex顾名思义是当前激活的选项卡索引,从0开始。 

 

 

 

 

 

 

 

 

【end】