[CLOSED] Debug Error

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] Debug Error

    Hi

    I have a page (Container.aspx) with panel container:

    <body>
        <form id="form1" runat="server">
        <ext:ResourceManager runat="server" Theme="Gray" DirectMethodNamespace="SIU.DirectMethods" >
        </ext:ResourceManager>
        <ext:Viewport runat="server" Layout="Border">
            <Items>
                <ext:Panel ID="pnlHeader" runat="server" Header="false" Region="North" Border="false" Height="100">
                        ...
                </ext:Panel>
                <ext:Panel ID="pnlLeft" runat="server" Width="250" Border="false" Region="West" Layout="Fit">
                        ...
                </ext:Panel>
                <ext:Panel ID="pnlContent" runat="server" Margins="5" Region="Center" BodyPadding="13">
                    <Loader runat="server" Mode="Frame" AutoLoad="false" ShowWarningOnFailure="false">
                        <LoadMask ShowMask="true" />
                    </Loader>
                </ext:Panel>
            </Items>
        </ext:Viewport>
        </form>
    </body>
    From selection in pnlLeft, I load aspx pages (same site) in the pnlContent as follows:

    [DirectMethod]
    public void LoadPageMenu(string reqPage, string idObj = "")
    {
    ...
    pnlContent.Loader.Url = reqPage;
    pnlContent.LoadContent();
    ...
    }
    This aspx pages load others pages (same site) in the same pnlContent, calling one javascript function in the page Container.aspx using parent.jsFunction. Sometimes, and randomly, I get this error message when to load one page:

    Click image for larger version. 

Name:	Request Failure.png 
Views:	25 
Size:	7.2 KB 
ID:	9501

    After, the loaded page close and, in the pnlContent, is loaded the loginUrl (authentication forms). Looks like session timeout, but this is configured in 15 minutes.

    I have a log error in the server side but doesn't save anything about this. In the chrome's console doesn't show anything. How can I solve or trace this error?

    Thank you.
    Last edited by Daniil; Apr 15, 2014 at 11:15 PM. Reason: [CLOSED]

Similar Threads

  1. [CLOSED] Exception in extnet-all-debug.js
    By michaeld in forum 2.x Legacy Premium Help
    Replies: 7
    Last Post: Oct 01, 2013, 3:05 PM
  2. Ext.net.Debug + Stores
    By peter.campbell in forum 1.x Help
    Replies: 2
    Last Post: Mar 29, 2011, 10:54 AM
  3. Replies: 9
    Last Post: Apr 12, 2010, 4:00 PM
  4. i cant debug coolite on MVC
    By chsn1 in forum 1.x Help
    Replies: 0
    Last Post: Nov 12, 2009, 5:13 AM
  5. [CLOSED] intellisense and debug mode.
    By pkellner in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Sep 29, 2008, 4:34 PM

Tags for this Thread

Posting Permissions