[ASP.NET]製作一個簡單的多頁Tab功能

來源:互聯網
上載者:User
我們經常在首頁中要瀏覽分類資訊,在C/S模式下,經常採用Tab分頁的方式來做,然後將不同的資訊放到不同的Tab頁中,然後可以點擊頁簽去查看不同頁面中的內容。我們可以用網頁的IFRAME來實行這個功能,先建立一個主WebForm1,在上面放兩個按鈕來類比頁簽(今後也可以用Photoshop來製作更精美的頁簽),然後再建立兩個子Form,WebForm2,WebForm3,當按鈕被按下的時候來切換IFRAME的src屬性去顯示不同的子頁面。具體代碼如下:

WebForm1.aspx

<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="iframetest.WebForm1" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

<HTML>

 <HEAD>

  <title>WebForm1</title>

  <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">

  <meta content="C#" name="CODE_LANGUAGE">

  <meta content="JavaScript" name="vs_defaultClientScript">

  <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">

  <STYLE>.aaa {

 BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BACKGROUND-COLOR: #ffcc33; BORDER-BOTTOM-STYLE: none

}

.bbb {

 BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BACKGROUND-COLOR: #99ffcc; BORDER-BOTTOM-STYLE: none

}

  </STYLE>

 </HEAD>

 <body MS_POSITIONING="GridLayout">

  <form id="Form1" method="post" runat="server">

   <asp:button id="Button1" style="Z-INDEX: 101; LEFT: 16px; POSITION: absolute; TOP: 24px" runat="server"

    Text="Button" CssClass="aaa"></asp:button>

   <asp:Button id="Button2" style="Z-INDEX: 102; LEFT: 72px; POSITION: absolute; TOP: 24px" runat="server"

    Text="Button" CssClass="bbb"></asp:Button>

   <iframe id="IFRAME1" style="BORDER-RIGHT: 0px solid; BORDER-TOP: 0px solid; Z-INDEX: 103; LEFT: 16px; BORDER-LEFT: 0px solid; WIDTH: 648px; BORDER-BOTTOM: 0px solid; POSITION: absolute; TOP: 40px; HEIGHT: 288px"

    runat="server"></iframe>

  </form>

 </body>

</HTML>

WebForm1.aspx.cs

    .

    .

    .

  private void Button1_Click(object sender, System.EventArgs e)

  {

   IFRAME1.Attributes.Add("src","Webform2.aspx");

  }

  private void Button2_Click(object sender, System.EventArgs e)

  {

   IFRAME1.Attributes.Add("src","Webform3.aspx");

  }

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.