Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Open Page in Tabs
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Open Page in Tabs

Feed from this thread
  • Sigfrid avatar

    Posted on Mar 23, 2011 (permalink)

    Good, I started a project and we decided to use Telerick controls. To do this we must ensure quen can make some interface requirements on the screens.

    One requirement is that the user can have quick access to windows that can open. For example, whenever there will be a new window, this is displayed in a tab. Should be invoked again, only that tab will be displayed.


    An example of how it could be achieved in the following image.

    Thanks in advance for the help.


    http://img846.imageshack.us/i/tabsv.png/

  • Posted on Mar 24, 2011 (permalink)

    Hello,
    I am not quite sure about your requirement and I suppose you want to show the another page in the PageView. If that is the case set the ContentUrl to the desired page/address. Here is a sample code.
    aspx:
    <telerik:RadTabStrip ID="RadMultiPage1" runat="server" MultiPageID="rm">
       <Tabs>
          <telerik:RadTab runat="server" Text="Tab1">
          </telerik:RadTab>
          <telerik:RadTab runat="server" Text="Tab2">
          </telerik:RadTab>
      </Tabs>
    </telerik:RadTabStrip>
    <telerik:RadMultiPage ID="RadMultiPage1" runat="server">
           <telerik:RadPageView ContentUrl="http://www.google.com" runat="server">
           </telerik:RadPageView>
    </telerik:RadMultiPage>

     If this is not your scenario please elaborate it .

    Thanks,
    Shinu.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Tabstrip > Open Page in Tabs