asp.net多选项卡页面的创建及使用方法
程序员文章站
2024-03-05 19:10:01
看了很多朋友还不会创建多选项卡的页面,特地总结了一下用法,很简单的一看便知。 1.首先下载ajaxcontroltookit包放置在bin目录下,刷新解决方案。 2.页面引...
看了很多朋友还不会创建多选项卡的页面,特地总结了一下用法,很简单的一看便知。
1.首先下载ajaxcontroltookit包放置在bin目录下,刷新解决方案。
2.页面引入(.aspx)
<%@ register assembly="ajaxcontroltoolkit" namespace="ajaxcontroltoolkit" tagprefix="asp" %>
3.控件调用(.aspx)
<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开始。
1.首先下载ajaxcontroltookit包放置在bin目录下,刷新解决方案。
2.页面引入(.aspx)
复制代码 代码如下:
<%@ register assembly="ajaxcontroltoolkit" namespace="ajaxcontroltoolkit" tagprefix="asp" %>
3.控件调用(.aspx)
复制代码 代码如下:
<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开始。
上一篇: Android 模拟器的使用详细介绍