[CLOSED] Add Tab in CodeBehind

Page 2 of 2 FirstFirst 12
  1. #11
    Ok I removed the reference
  2. #12
    A UserControlLoader is not supposed to load .aspx pages. It is for loading .ascx user controls.

    So, do you need to load an .aspx page or an .ascx user control?
  3. #13
    Hello


    I will use aspx page.
  4. #14
    Then you could load that page as an iframe using a Loader.
    Ext.Net.Panel panel = new Ext.Net.Panel
    {
        Title = "New Tab",
        Closable = true,
        Layout = "Fit",
        Loader = 
        {
            Mode = LoadMode.Frame,
            Url = "WebForm1.aspx"
        }
    };
  5. #15
    Perfect!! Close the thread.
Page 2 of 2 FirstFirst 12

Similar Threads

  1. [CLOSED] confirm codebehind?
    By hdsoso in forum 2.x Legacy Premium Help
    Replies: 9
    Last Post: May 28, 2014, 10:30 AM
  2. Replies: 1
    Last Post: Apr 06, 2013, 10:47 AM
  3. Ext.NET & Codebehind
    By plykkegaard in forum Examples and Extras
    Replies: 17
    Last Post: Jul 31, 2012, 2:03 PM
  4. Adding Tab using codebehind
    By gevik in forum 1.x Help
    Replies: 9
    Last Post: Oct 02, 2011, 7:43 PM
  5. Why use Markup instead of Codebehind?
    By dbassett74 in forum 1.x Help
    Replies: 1
    Last Post: Apr 21, 2009, 7:51 PM

Posting Permissions