Install framework on web and file server?

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

  1. #1

    Default Install framework on web and file server?

    I have a web server running IIS pointing to a file server. Should the
    ..NET framework be installed on both the web server and the file
    server?

    Right now I have it installed on only the web server. <script> aspx
    pages work, but I cant deploy Web applications --get a "can't load
    namespace.global" error in the global.asax. I xcopied all the files
    and the bin/dll.

    Thanks
    --Dietrich
    lawrence Guest

  2. Similar Questions and Discussions

    1. Framework 2.0 Beta 2 serializing a server control at run time
      How can I persist a server control to aspx code at run time in Framework 2.0 Beta 2. This can be done at design time with the...
    2. Loading Framework To Server
      Hello, I have convinced my company to give ASP.Net a try. I have never loaded anything to a server (Windows 2000) and am looking for some...
    3. How do I reapply .Net framework to server?
      I uninstalled the inet server on my w2k server. Then installed it again, but now it does not handle aspx pages. I downloaded the dot.net framwork...
    4. Can't install Microsoft Framework
      I have XP Professional. I want to install Visual Studio.net. But when trying to install Microsoft framework, it failed though I have installed IIS....
    5. .NET Framework won't install
      I had Visual Studio .NET installed on my system for a while and then decided I would install a second copy of Windows 2000 on my second drive and...
  3. #2

    Default Re: Install framework on web and file server?

    You only need it installed on the machine on which the code runs. If the
    code is grabbing stuff from the file server, the file server doesn't need to
    have the platform.

    --
    HTH,

    Kevin Spencer
    ..Net Developer
    Microsoft MVP
    [url]http://www.takempis.com[/url]
    Big things are made up
    of lots of little things

    "lawrence" <dwlawren@staff.uiuc.edu> wrote in message
    news:aca0cbec.0307091357.590d37f9@posting.google.c om...
    > I have a web server running IIS pointing to a file server. Should the
    > .NET framework be installed on both the web server and the file
    > server?
    >
    > Right now I have it installed on only the web server. <script> aspx
    > pages work, but I cant deploy Web applications --get a "can't load
    > namespace.global" error in the global.asax. I xcopied all the files
    > and the bin/dll.
    >
    > Thanks
    > --Dietrich

    Kevin Spencer Guest

  4. #3

    Default Re: Install framework on web and file server?

    My first guess would be a security problem.
    By default ASP.NET runs under the ASPNET user account.
    This account does not have network privileges by default.
    The global.asax is pretty much the first page loaded under normal
    circumstances, and it can't be accessed.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "lawrence" <dwlawren@staff.uiuc.edu> wrote in message
    news:aca0cbec.0307091357.590d37f9@posting.google.c om...
    > I have a web server running IIS pointing to a file server. Should the
    > .NET framework be installed on both the web server and the file
    > server?
    >
    > Right now I have it installed on only the web server. <script> aspx
    > pages work, but I cant deploy Web applications --get a "can't load
    > namespace.global" error in the global.asax. I xcopied all the files
    > and the bin/dll.
    >
    > Thanks
    > --Dietrich

    Steve C. Orr, MCSD 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