<customErrors

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?QXJuZSBHYXJ2YW5kZXI=?=

    <customErrors

    I have <customErrors .. in my web.config but the redirect does not kick in.
    What am I doing wrong?
    <customErrors defaultRedirect ="Error.aspx " mode="On">
    <error statusCode="404 " redirect="Filen otfound.aspx"/>
    </customErrors>
    --
    Arne Garvander
    Certified Geek
    Professional Data Dude
  • Alexey Smirnov

    #2
    Re: &lt;customError s

    On Jun 13, 6:48 pm, Arne Garvander
    <ArneGarvan...@ discussions.mic rosoft.comwrote :
    I have <customErrors .. in my web.config but the redirect does not kick in..
    What am I doing wrong?
    <customErrors defaultRedirect ="Error.aspx " mode="On">
                            <error statusCode="404 " redirect="Filen otfound.aspx"/>
                    </customErrors>
    --
    Arne Garvander
    Certified Geek
    Professional Data Dude
    Arne

    I suppose 404 is not working? If you call that page with the full URL
    at http://servername/Filenotfound.aspx, does it work?

    Comment

    • =?Utf-8?B?QXJuZSBHYXJ2YW5kZXI=?=

      #3
      Re: &lt;customError s

      I can go there directly. The automatic redirect does not work.
      --
      Arne Garvander
      Certified Geek
      Professional Data Dude


      "Alexey Smirnov" wrote:
      On Jun 13, 6:48 pm, Arne Garvander
      <ArneGarvan...@ discussions.mic rosoft.comwrote :
      I have <customErrors .. in my web.config but the redirect does not kick in..
      What am I doing wrong?
      <customErrors defaultRedirect ="Error.aspx " mode="On">
      <error statusCode="404 " redirect="Filen otfound.aspx"/>
      </customErrors>
      --
      Arne Garvander
      Certified Geek
      Professional Data Dude
      >
      Arne
      >
      I suppose 404 is not working? If you call that page with the full URL
      at http://servername/Filenotfound.aspx, does it work?
      >

      Comment

      • Alexey Smirnov

        #4
        Re: &lt;customError s

        On Jun 13, 8:58 pm, Arne Garvander
        <ArneGarvan...@ discussions.mic rosoft.comwrote :
        I can go there directly. The automatic redirect does not work.
        --
        Arne Garvander
        Certified Geek
        Professional Data Dude
        >
        >
        >
        "Alexey Smirnov" wrote:
        On Jun 13, 6:48 pm, Arne Garvander
        <ArneGarvan...@ discussions.mic rosoft.comwrote :
        I have <customErrors .. in my web.config but the redirect does not kick in..
        What am I doing wrong?
        <customErrors defaultRedirect ="Error.aspx " mode="On">
                                <error statusCode="404 " redirect="Filen otfound.aspx"/>
                        </customErrors>
        --
        Arne Garvander
        Certified Geek
        Professional Data Dude
        >
        Arne
        >
        I suppose 404 is not working? If you call that page with the full URL
        athttp://servername/Filenotfound.as px, does it work?- Hide quoted text -
        >
        - Show quoted text -
        So, what do you get when you go to http://server/pagedoesnotexist.aspx?
        A blank page, an error... etc?

        Try to get rid of defaultRedirect ="Error.aspx " to see if it 404 would
        work, or not (maybe you have an exception somethere, or a redirect in
        case of an error). Check if path of redirect is correct, change it to
        "~/Filenotfound.as px", or "~/DIR/Filenotfound.as px"... If it doesn't
        help, look at IIS, Application Configuration, properties for aspx
        files in the Application Extensions and ensure that "Verify that file
        exists" is unmarked.

        Comment

        Working...