或者有什么好的解决方案?
下面是一个小例子,这是我比较喜欢的TabStrip样式,复制即可运行
WebForm1.aspx
<%@ Register TagPrefix="iewc" Namespace="Microsoft.Web.UI.WebControls" Assembly="Microsoft.Web.UI.WebControls,Version=1.0.2.226, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
<script language=C# runat=server>
void btn_click(object sender, System.EventArgs e)
{
Response.Write("This is page one!");
TextBox1.Text="This is Page three!";
}
</script>
<HTML>
<HEAD>
</HEAD>
<body MS_POSITIONING="GridLayout">
<TABLE height="214" cellSpacing="0" cellPadding="0" width="79" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="79" height="214">
<form id="WebForm1" method="post" runat="server">
<TABLE height="62" cellSpacing="0" cellPadding="0" width="202" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="1" height="15"></TD>
<TD width="201"></TD>
</TR>
<TR vAlign="top">
<TD height="47"></TD>
<TD>
<table height="46" width="200">
<tr>
<td><iewc:tabstrip id="TabStrip1" runat="server" TargetID="MultiPage1" SepDefaultStyle="background-color:#FFFFFF;border-color:#AAAAAA; border-width:1px;border-style:solid;border-top:none;border-left:none; border-right:none" TabDefaultStyle="color:#aaaaaa;background-color:#EEEEEE; border-color:#AAAAAA;border-width:1px;border-style:Solid; font-weight:bold;font-family:Verdana;font-size:11px;height:21; width:79;text-align:center;" TabHoverStyle="color:red" TabSelectedStyle="color:#000000;background-color:#FFFFFF; border-bottom:none" Width="100%">
<iewc:Tab Text="第一页"></iewc:Tab>
<iewc:TabSeparator></iewc:TabSeparator>
<iewc:Tab Text="第二页"></iewc:Tab>
<iewc:TabSeparator></iewc:TabSeparator>
<iewc:Tab Text="第三页"></iewc:Tab>
</iewc:tabstrip></td>
</tr>
<tr>
<td><iewc:multipage id="MultiPage1" runat="server" Width="100%">
<iewc:PAGEVIEW>
<div align="center">
<asp:Button id="Button1" runat="server" Text="第一页" Font-Size="13px" Font-Bold="True" ForeColor="#8080FF" BackColor="#FFFFC0" OnClick="btn_click"></asp:Button></div>
</iewc:PAGEVIEW>
<iewc:PAGEVIEW>
<div align="center">
<asp:Label Font-Size="13px" id="Label2" runat="server" Font-Bold="True" ForeColor="#8080FF">第二页</asp:Label></div>
</iewc:PAGEVIEW>
<iewc:PAGEVIEW>
<div align="center">
<asp:TextBox id="TextBox1" runat="server" Font-Bold="True" Width="150px" ForeColor="#8080FF">第三页</asp:TextBox></div>
</iewc:PAGEVIEW>
</iewc:multipage></td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</form>
</TD>
</TR>
</TABLE>
</body>
</HTML>