mattyman1254
New Member
I am using jquery tabs in master page to open the aspx files once user clicks on a tab heading. But if I use my page as link it will repeat the "header" part(similar to this:jquery tabs and asp.net master pages issue). Already tried the solution but cannot get my head around it. Can someone please help. here is my code in masterpage:\[code\]<form id="form1" runat="server"><div class="mainWrapper"> <div class="wrapper"> <div class="header"> <a href="" class="logo"></a> <div class="topToolbar"> <span>Welcome <a href="http://stackoverflow.com/" class="logOut">Log Out</a></span> </div> </div> <div class="container"> <div id="tabs"> <div class="tabsCenter"> <ul> <li><a href="http://stackoverflow.com/questions/12763569/Myfirstpage.aspx">First</a></li> <li><a href="http://stackoverflow.com/questions/12763569/SecondPage.aspx">Second</a></li> </ul> </div> <div class="tabsBottom"> </div> </div> <asp:ContentPlaceHolder ID="BodyContent" runat="server"> </asp:ContentPlaceHolder> </div> </div> <div class="push"> </div></div></form>\[/code\]