I have a form that contains 2 tabs. These 2 tabs determine which of the 2 pageviews of the multipage control are displayed.
Within these pageviews are linkbuttons that can be clicked. My problem occurs when I click a linkbutton on the 2nd tab, the page ends up redisplaying the data from the 1st tab instead. How can force the multipage control to keep it's focus on the 2nd pageview when I click a link in it?
Here's my code:
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" style="width:100%;">
SORT BY:
|&nbsp
|&nbsp
</td>
</tr>
<tr>
<td style="padding:5px;width:100%;">
<div id="posts" />
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td class="widget_top_middle" align="center">
SORT BY:
|&nbsp
|&nbsp
</td>
</tr>
<tr>
<td style="padding:5px;width:100%;">
<div id="questions" class="posts" />
</td>
</tr>
</table>
Any idea how I can keep it on the 2nd pageview when I click a linkbutton? Thanks.