Ajax Accordion Loses Current Pane

∥☆過路亽.° 提交于 2019-12-01 00:19:56

I've worked-around the problem by passing the current pane index in the query string then setting the current pane back to the index in the Page_Load event of the target page.

Thanks,

Rob.

i do solve this by use link with Query String like this below

url="~/Opportunity/Indent.aspx?index=1" // replace 1 with your desired index

and in page load event write something like this

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) 

        Dim selectedindex As String = Request.QueryString("index")
        UserAccordion.SelectedIndex = selectedindex



    End Sub
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!