Moving/Installing an ASP.NET Web App.

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

  1. #1

    Default Moving/Installing an ASP.NET Web App.

    I have developed a very simple ASP.NET web application on
    my local PC. I have IIS running on my local PC. I am
    able to successfully open/run this application in
    Internet Explorer on my local PC when I browse to
    [url]http://localhost/WebApplication1/WebForm1.aspx[/url].

    I then copied the WebApplication1 folder and all it
    contents from my local PC to an actual web server. I
    tried to open/run the application from this web server,
    but the textboxes and button were missing and the labels
    were not aligned. Although Internet Explorer didn't give
    me any error messages, it appears that Internet Explorer
    is confused as to how to handle the contents of
    WebForm1.aspx. Something must be missing or not
    organized properly.

    How do I move/install my web application to/on an actual
    web server? In other words, what folders/files need to
    be copied to the web server? Does the web server need to
    be running IIS to run my web application? Does any other
    special ASP.NET related software need to be installed on
    the web server so that it can run my application?

    Thanks your help.
    Tom S. Guest

  2. Similar Questions and Discussions

    1. Error 1409 installing Acrobat 8 on SystemError message 1409, installing Acrobat 8Professional on O
      Have tried installing from the CD or copy files to HD and then install. Will not happen either way. Will get error message or will not open. Have...
    2. Help! CFMX7 stalls on installing at "Installing WebServer Connectors"
      I hope someone can help with this - I am currently doing an install (fresh = no other CF versions on server) on a small production server - the...
    3. Installing standalone CF7 after installing JRun4
      I have installed JRun4 in developer mode. Subsequently I am attempting to install CF7 in "Multiserver configuration" but this option is dimmed out...
    4. Moving Randomly Moving Sprite To New Location on mouseEnter
      Hi All, This is way over my head. I am currently using Director 8. I have a randomly moving sprite(call it X) on stage (I accomplished this...
    5. Moving to ASP.NET
      Am moving from vbscript asp to .NET. Does anyone know of any good tutorials or books on the subject? Thanks Matt
  3. #2

    Default Re: Moving/Installing an ASP.NET Web App.

    You need to have the .NET runtime installed on the web server you are
    deploying to. You may also need to run aspnet_regiis.exe on the site you are
    deploying, to configure that web site to use asp.net as the handler for the
    various script types it may encounter. AFAIK, IIS is the only web server
    that will work for ASP.NET.

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows XP
    Windows XP Associate Expert
    --
    "Tom S." <tomgschu@earthlink.net> wrote in message
    news:01e001c355f6$2f63a0c0$a301280a@phx.gbl...
    > I have developed a very simple ASP.NET web application on
    > my local PC. I have IIS running on my local PC. I am
    > able to successfully open/run this application in
    > Internet Explorer on my local PC when I browse to
    > [url]http://localhost/WebApplication1/WebForm1.aspx[/url].
    >
    > I then copied the WebApplication1 folder and all it
    > contents from my local PC to an actual web server. I
    > tried to open/run the application from this web server,
    > but the textboxes and button were missing and the labels
    > were not aligned. Although Internet Explorer didn't give
    > me any error messages, it appears that Internet Explorer
    > is confused as to how to handle the contents of
    > WebForm1.aspx. Something must be missing or not
    > organized properly.
    >
    > How do I move/install my web application to/on an actual
    > web server? In other words, what folders/files need to
    > be copied to the web server? Does the web server need to
    > be running IIS to run my web application? Does any other
    > special ASP.NET related software need to be installed on
    > the web server so that it can run my application?
    >
    > Thanks your help.

    Chris Jackson 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