[CLOSED] Ext is undefined crush

Page 2 of 2 FirstFirst 12
  1. #11
    To get the Ext.NET resource handler working with authentication, you can set up this handler in Global.asax.
    protected void Application_AuthenticateRequest(object sender, System.EventArgs e)
    {
        string url = HttpContext.Current.Request.FilePath;
    
        if (url.EndsWith("ext.axd"))
        {
            HttpContext.Current.SkipAuthorization = true;
        }
    }
  2. #12
    Quote Originally Posted by Daniil View Post
    To get the Ext.NET resource handler working with authentication, you can set up this handler in Global.asax.
    protected void Application_AuthenticateRequest(object sender, System.EventArgs e)
    {
        string url = HttpContext.Current.Request.FilePath;
    
        if (url.EndsWith("ext.axd"))
        {
            HttpContext.Current.SkipAuthorization = true;
        }
    }
    Ok:)

    Thanks @Daniil for explanation:)
    Now this is clearer for me.
    Thread can be closed:)
    Once again thanks for help;)
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Ext is undefined
    By HzA in forum 1.x Help
    Replies: 3
    Last Post: Nov 23, 2011, 7:29 PM
  2. Ext is Undefined
    By OSSAGHO in forum 1.x Help
    Replies: 1
    Last Post: Sep 24, 2011, 10:43 PM
  3. Ext' is undefined
    By vivekrane1986 in forum 1.x Help
    Replies: 8
    Last Post: May 28, 2010, 5:50 AM
  4. Ext.example undefined Ext???
    By Hualin Yuan in forum 1.x Help
    Replies: 0
    Last Post: Apr 23, 2010, 2:07 AM
  5. ext undefined
    By reza_muhammad in forum 1.x Help
    Replies: 0
    Last Post: Nov 17, 2009, 1:52 AM

Tags for this Thread

Posting Permissions