Deploying an ASP.NET application

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

  1. #1

    Default Deploying an ASP.NET application

    I have just finished an ASP.NET application, but I don't know if I need to
    deploy/release the project in order to use it on the internet. It doesn't
    sound right to just put all of the projects' files onto the web server
    where the site is hosted, because then anyone could access them. I have
    looked in various books and searched online about this. Can anyone help me?
    Thanks.

    --
    Message posted via [url]http://www.dotnetmonster.com[/url]
    Nicole Temple via DotNetMonster.com Guest

  2. Similar Questions and Discussions

    1. Deploying Extensions
      I have working in a company that is already using Contribute, we have it installed on many machines. We are now looking at adding some custom...
    2. authentication not kept when deploying application
      I currently wrote a login application using asp.net. It works just great on my local computer, but I need to use it on the internet for the company...
    3. Deploying ASP.NET database application to remote server
      Everything in the deployment works fine with the exception of the address of the database also deployed on the remote server. The string address...
    4. deploying the web application
      Hi, I am using visual studio .net for developing and deploying the web application. My application is running perfectly on my system. I...
    5. Deploying ASP.NET application + database
      Hi, I have ASP.NET application that includes a database. How do I transfer all this to another computer. Do I just copy application's folder and...
  3. #2

    Default Re: Deploying an ASP.NET application

    You don't need the VS.NET files. The files you need to run are all of the
    DLLs in the bin directory, all of the aspx and ascx files, the web.config,
    all of the static files (graphics, css, etc.) and possibly any other custom
    components involved such as COM objects, assemblies in the GAC, custom
    config files, etc.

    You don't nees the solution files, project files, any of the source code
    (.vb or .cs) or the resource files.

    Joe K.

    "Nicole Temple via DotNetMonster.com" <forum@nospam.DotNetMonster.com> wrote
    in message news:421e88d8ca524bfab0585778f230087e@DotNetMonste r.com...
    >I have just finished an ASP.NET application, but I don't know if I need to
    > deploy/release the project in order to use it on the internet. It doesn't
    > sound right to just put all of the projects' files onto the web server
    > where the site is hosted, because then anyone could access them. I have
    > looked in various books and searched online about this. Can anyone help
    > me?
    > Thanks.
    >
    > --
    > Message posted via [url]http://www.dotnetmonster.com[/url]

    Joe Kaplan \(MVP - ADSI\) 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