Response.Redirect,将tabcontainer保留在活动选项卡上

时间:2011-10-05 15:45:09

标签: asp.net vb.net viewstate response.redirect tabcontainer

当我通过response.redirect进行每次提交时,我的VB.net tabcontainer需要保持在活动选项卡上。

我怎样才能做到这一点?我需要那个response.redirect,因为它会显示主标签容器中添加的内容。

<asp:TabContainer runat="server" ActiveTabIndex="0" Height="200px" 
Width="175px" ScrollBars="Auto" EnableTheming="True" Font-
Underline="False" ID="TabContainer2" EnableViewState="False" 
Style="float:right; padding-left: 110px; margin-bottom: 340px;" 
OnActiveTabChanged="TabContainer1_ActiveTabChanged">


Protected Sub TabContainer1_ActiveTabChanged(ByVal sender As Object, 
ByVal e As EventArgs)
    ViewState("ActiveTabIdx") = TabContainer1.ActiveTabIndex
End Sub


Protected Sub SubmitCompanies_Click(ByVal sender As Object, ByVal e 
As System.EventArgs) Handles SubmitCompanies.Click
*****there is more code here but for this question, it's not necessary so it has been 
omitted*****
    Response.Redirect(Request.RawUrl)
    ViewState("ActiveTabIdx") = TabContainer1.ActiveTabIndex


Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) 
Handles Me.Load
ProductID.Value = Request.QueryString("id")
Page.Response.Cache.SetCacheability(HttpCacheability.NoCache)
If Not ViewState("ActiveTabIdx") Is Nothing Then
    TabContainer1.ActiveTabIndex = Convert.ToInt32(Session("ActiveTabIdx"))
End If
End Sub

4 个答案:

答案 0 :(得分:1)

ViewState不适用于Response.Redirect。使用当前的实现,我将使用QueryString或Session来存储对活动选项卡的引用。

Response.Redirect(String.Format("{0}?tab={1}", Request.RawUrl, TabContainer1.ActiveTabIndex)) 

答案 1 :(得分:0)

将活动标签索引保存在会话变量中,并在Page_Load事件检查中Session("ActiveTabIdx")是否Nothing或为空,然后将TabContainer1.ActiveTabIndex设置为值{ {1}}。像这样:

Session("ActiveTabIdx")

在设置 Protected Sub SubmitCompanies_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles SubmitCompanies.Click 'Rest of code Session("ActiveTabIdx") = TabContainer1.ActiveTabIndex Response.Redirect(Request.RawUrl) End Sub Protected Sub Page_Load(ByVal Sender As Object, ByVal e as System.EventArgs) Handles Page.Load If not ViewState("ActiveTabIdx") is Nothing Then TabContainer1.ActiveTabIndex = Convert.ToInt32(Session("ActiveTabIdx")) End If End Sub 变量值之前,您在SubmitCompanies_Click之间重定向用户!

答案 2 :(得分:0)

我认为您的解决方案是使用jquery在用户单击选项卡时将选定的选项卡保存在cookie或任何位置,并使用jquery从cookie中获取旧的选定选项卡并使用jquery设置选定的选项卡

答案 3 :(得分:0)

我可以看到你正在分配viewstate值

ViewState("ActiveTabIdx") = TabContainer1.ActiveTabIndex

之后

Response.Redirect(Request.RawUrl)

此代码是可删除的。

首先要注意的是ViewState不带有新请求(通过调用Redirect方法启动新请求)。解决方案是使用查询字符串。将活动选项卡添加为RawUrl末尾的参数,然后在页面加载时读取它。

希望这有帮助,

克里斯