Upgrade 1 to1.1 Problem need help

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Upgrade 1 to1.1 Problem need help

    I upgraded VS 2003 and asked my ISP (MaximumASP) to upgrade the server to
    net 1.1. That was two weeks ago and I am having a problem that will not go
    away. When publishing the site from VS I get an error that 1.1 cannot be
    found.
    Tech takes a few days to figure it out and consult with MS before the come
    to the conclusion that a file called get_aspx_ver.aspx is missing or
    needed, since the file could not be found the get_aspx_ver.aspx request was
    being redirected to my custom 404 page. They put a dummy file in and it
    worked for awhile then failed when I lost my connection halfway through an
    upload (Not the only time I had lost my connection during U/l). I am stuck,
    they seem to be stuck, anybody have any suggestion how we might get unstuck?

    Please forward replies to Jon AT Pokersearch DOT com (replace AT with @ and
    Dot with .) as well as posting to the thread.


    noone Guest

  2. Similar Questions and Discussions

    1. mx 7 upgrade problem with cfx tag
      We just upgraded to coldfusion mx 7 from mx 6.1 and our 2 custom java tags stopped working. We are running CF on Solaris 8. Any pointers on how to...
    2. Problem with CF 7 Upgrade
      I have a search form that retrieves data for vendors, staff, and students. Due to the sensitive nature of the data, I employed NTFS security on the...
    3. Upgrade from 4 to 6 problem
      I accidently deleted 4.0 Acrobat Standard, so I installed the 6.0 version. My copier, Canon Imagerunner 5000, is recognized by Adobe, I can preview...
    4. [PHP] PHP Upgrade Problem
      I thing, you must use $s = getenv('SCRIPT_URL'); and not $s = getenv('SCRIPT_NAME'); in php ver 4.3.2 Shaun wrote:
    5. PHP Upgrade Problem
      Hi, The following code snippet is supposed to return the current page i am on and append some variables. $s = getenv('SCRIPT_NAME'); $link =...
  3. #2

    Default Re: Upgrade 1 to1.1 Problem need help

    Jon,
    VS.NET 2003 is using that file, get_aspx_ver.aspx to retrive the version
    number from the web server of the .NET framework that is running
    applications. The file doesn't ever exist. This is an upgrade over VS 2002
    which requested a similar file with the .tmp extension. When you have a
    custom 404 page, it seems that it isn't being routed through the ASP.NET
    engine, and thus the headers that ASP.NET sends aren't being added.

    If you can manually at HTTP headers to the result that your server sends out
    when it requests the custom 404 page, you should add these headers:
    X-Powered-By: ASP.NET
    X-AspNet-Version: 1.1.4322

    Or, a better suggestion is to either
    a) Have your ISP add a script map for your website that makes your 404
    file go through the ASP.NET engine. This will add the required headers, but
    shouldn't affect the performance or speed of your website.
    b) Remove the custom 404 page, or make it an .aspx file.


    HTH

    Ryan Gregg


    "noone" <no@one.com> wrote in message
    news:OKuycPkVDHA.2288@TK2MSFTNGP12.phx.gbl...
    > I upgraded VS 2003 and asked my ISP (MaximumASP) to upgrade the server to
    > net 1.1. That was two weeks ago and I am having a problem that will not go
    > away. When publishing the site from VS I get an error that 1.1 cannot be
    > found.
    > Tech takes a few days to figure it out and consult with MS before the
    come
    > to the conclusion that a file called get_aspx_ver.aspx is missing or
    > needed, since the file could not be found the get_aspx_ver.aspx request
    was
    > being redirected to my custom 404 page. They put a dummy file in and it
    > worked for awhile then failed when I lost my connection halfway through an
    > upload (Not the only time I had lost my connection during U/l). I am
    stuck,
    > they seem to be stuck, anybody have any suggestion how we might get
    unstuck?
    >
    > Please forward replies to Jon AT Pokersearch DOT com (replace AT with @
    and
    > Dot with .) as well as posting to the thread.
    >
    >

    Ryan Gregg Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139