i want to activate a tab using an href, the tab is on another page. how can i do it, this is my code :
First html page:
<html>
<body>
 <a href="Mytransfers.aspx#__tab_Main_ctl00_TabCodntainer1_TabPanel4"  data-toggle="TabPanel4"><u><b>how to transfer funds ?</b></u></a>
</body>
</html>`
Second Html page that i want to activate it tab:
 <html>
   <body>
  <cc1:TabPanel runat="server" HeaderText="TabPanel4" ID="TabPanel4">
                   <HeaderTemplate>
                   Bon à savoir
                   </HeaderTemplate>
 </body>
 </html>`
