2013-08-21 45 views
0

如何在選擇ASP.Net母版頁中的特定jQuery選項卡時執行回發?
請幫忙。任何答案將不勝感激。謝謝
如何在jquery選項卡中回覆主頁上的

這是我的標記。順便說一句,我只是複製了默認的一些代碼,老實說,因爲我是ASP.Net中的一個新手。我只想嘗試一些代碼和設計,並想了解更多。

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="SiteMaster" %> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 
<head runat="server"> 
<title></title> 
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" /> 
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> 
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> 
<link rel="stylesheet" href="/resources/demos/style.css" /> 

<script type="text/javascript"> 
    $(function() { 
     $("#tabs").tabs(); 
    }); 
</script> 

<asp:ContentPlaceHolder ID="HeadContent" runat="server"> 
</asp:ContentPlaceHolder> 

</head> 

<body> 
<form runat="server"> 
<div class="page"> 
    <div class="header"> 
     <div class="title"> 
      <h1> 
       My ASP.NET Application 
      </h1> 
     </div> 
     <div class="loginDisplay"> 
      <asp:LoginView ID="HeadLoginView" runat="server" EnableViewState="false"> 
       <AnonymousTemplate> 
        [ <a href="~/Account/Login.aspx" id="HeadLoginStatus" runat="server">Log In</a> 
        ] 
       </AnonymousTemplate> 
       <LoggedInTemplate> 
        Welcome <span class="bold"> 
         <asp:LoginName ID="HeadLoginName" runat="server" /> 
        </span>! [ 
        <asp:LoginStatus ID="HeadLoginStatus" runat="server" LogoutAction="Redirect" LogoutText="Log Out" 
         LogoutPageUrl="~/" /> 
        ] 
       </LoggedInTemplate> 
      </asp:LoginView> 
     </div> 
    </div> 
    <div id="tabs" runat="server"> 
     <ul> 
      <li><a href="Book.aspx" runat="server" id="Tab1">Book</a></li> 
      <li><a href="Default.aspx" runat="server" id="Tab2">Authors</a></li> 
      <li><a href="New.aspx" runat="server" id="Tab3">New</a></li> 
      <li><a href="About.aspx" runat="server" id="Tab4">About</a></li> 
     </ul> 


<div id="TabContent" class="main"> 
      <asp:ContentPlaceHolder ID="MainContent" runat="server" /> 
     </div> 
    </div> 
    <div class="clear"> 
    </div> 
</div> 
<div class="footer"> 
</div> 
</form> 
</body> 
</html> 

每當我點擊它沒有任何回傳標籤,而不是內容,並將其地址欄始終保持任何網頁我設置爲起始頁面。

+0

@ Vogel612,我只是編輯我的職務。 – jNag

回答

0

試試這個代碼

$("#tab").on('click',function(){ 
    __doPostBack('tab',''); 
    }); 
+0

感謝您的代碼。我嘗試了很多次,但它不起作用 – jNag

+0

ok ..使用settimeout方法來調用dopostback方法http://forums.asp.net/t/1799332.aspx/1 –

相關問題