Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
How can I create a new tab across different .aspx file?
posted

The situation as follow:

1. I created a UltraWebTab Control in Main.aspx and add 1 tab(Tab1) in the control
2. Content pane in Tab1 I  use "tabItem1.ContentPane.TargetUrl= "./TransferFilter.aspx"
3. A WebDataGrid control in TransferFilter.aspx
4. How can I select a single row in WebDataGrid then it will automated create a tap in Main.aspx with the data which selected in the WebDataGrid?

 Thank you for your help.

 

  • 24497
    posted

    Hi,

    If you use TargetUrl, then you can not use common dot-net references to controls located in pages. To access controls located on different page you may try to put references of control in a global object like Session, add access them through those references.