TabContainer and separate pages...please help

  • Thread starter Thread starter ASF
  • Start date Start date
A

ASF

Hi all,

I have several different pages (using a Master Page) that I thought I
could organize using a tab control, but it looks as if tab panels
can't go to separate page on click event? What am I missing here?
 
Hi all,

I have several different pages (using a Master Page) that I thought I
could organize using a tab control, but it looks as if tab panels
can't go to separate page on click event? What am I missing here?

Here is my tabpanel
<cc1:TabPanel ID="tpDNL" runat="server" OnClientClick="return test
();">

Note the OnClientClick. Here is the javascript for it.
function test()
{
window.location.href='dnl.aspx';
return false;
}

What am I doing wrong here?
 
Back
Top