Results 1 to 2 of 2

Thread: How to Host ASP

  1. #1
    HowardAllen is offline Senior Member
    Join Date
    Dec 2009
    Posts
    196
    Rep Power
    3

    Default How to Host ASP

    Hosting ASP on a Windows server needs Internet Information Service. IIS is even installed on desktop versions of the OS, but these devices are unable to handle the traffic and processor damage of hosting sites. IIS on these devices is used for growth. To host ASP programs, first need a server and a connection to the Internet. If having these, then hosting pages is simple as configuring the server and folder for ASP processes.

    • Make a directory on the IIS server. The directory's place can be anywhere on HDD. Make a note of where to make the directory for the following steps.
    • Click Start and go to "Control Panel." Click twice on "Administrative Tasks" directory in Control Panel. Click device on IIS to open the IIS Management Console.
    • Right click "Default Web Site" and click "New." Go to "Virtual Directory." Select "Next".
    • Type a name for the ASP website. Select "Next".
    • Type the directory path for the website directory. This is the path from the first step.
    • Click "Read" and "Run scripts". Select "Next" and select "Close".
    • Right click the new virtual directory recently created. Go to "Properties." This opens a configuration screen. Select "ASP.NET".
    • Select "Edit configuration". Select "Add" under "Application Settings". After completion, select "Ok".
    • Upload ASP pages to the directory created on first step.
    • Open a Web browser and go to the ASP web site.

  2. #2
    sim000 is offline Junior Member
    Join Date
    Jan 2010
    Location
    u.k
    Posts
    4
    Rep Power
    0

    Default

    Hello
    Web applications are typically designed, created, and tested in a development environment that is accessible only to the programmers working on the site. Once the application is ready to be released, it is moved to a production environment where the site can be accessed by anyone on the Internet. This deployment process introduces a number of challenges:

    • A production environment must exist and be properly setup before an ASP.NET application can be deployed; moreover, the production environment must be kept up to date with the latest security patches.
    • The correct set of markup files, code files, and support files must be copied from the development environment to the production environment. For data-driven applications, this might require copying the database schema and/or data, as well.
    • There may be configuration differences between the two environments. The database connection string or e-mail server used in the development environment will likely be different than the production environment. What's more, the behavior of the application may depend on the environment. For example, when an error occurs in development the error's details can be displayed on screen, but when an error occurs in production, a user-friendly error page should be displayed instead, and the error details e-mailed to the developers.

    To obviate the first challenge - setting up and maintaining a production environment - many individuals and businesses outsource their production environments to web hosting providers. A web hosting provider is a company that manages the production environment on your behalf. There are countless web host providers, each with varying prices and service levels; see the "Finding a Web Host Provider" section for tips on locating such a service provider.

Similar Threads

  1. host a website
    By jamescraft in forum Programming
    Replies: 1
    Last Post: 03-20-2010, 10:09 AM
  2. USB 2.0 Host Controller
    By Easton Fletcher in forum Hard Disk
    Replies: 8
    Last Post: 06-23-2009, 10:45 AM
  3. Web host
    By allster in forum Web. 2.0
    Replies: 0
    Last Post: 04-04-2009, 07:41 AM
  4. Ranges of Host ID
    By Macavi6987 in forum General Internet Terms
    Replies: 0
    Last Post: 11-25-2008, 05:45 AM
  5. Host Your Own Web Albums
    By techpro in forum General Internet Terms
    Replies: 0
    Last Post: 04-11-2008, 01:17 PM

Bookmarks

Posting Permissions

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

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