Host Web Application in IIS

Step 1 :
  Install IIS (Internet Information Services)
         Refer : IIS installation Steps
Step 2 :
  Check the Servies are started (run->services.msc)

    • IIS Admin Service
    • World Wide Web Publishing Service
Step 3 :
  Create Application Pool (Run->inetmgr or start->control panel->Administrator->Internet Information Services(IIS) Manager)
    • In Connection Pool expand Application Pools
    • Right click the Application Pools and Select New->Application Pool
    • Enter the Application Pool Name in Name Ex : TestPool
    • Now select .NetFramework Versions from the Listed Framework.
    • Select Magnaged pipeline mode as Integrated.
    • Checked the Start Application Pool Immediately.
    • Now click on Ok.
Step 4 :
  create virtual directory
    •  Expand the (local Computer)
    • Expand the Sites
    • Expand Default Web Site
    • Now right click the Default Web Site and Select New->Virtual Directory
    • Now the virtual directory will open. Click on Next
    • Now Enter the Alias Name for Virtual Directory which is used to identitfy the website.
    • click on Next
    • Now Browse  the Physical Directory (i.e Project File Location) as Path and click on Next.
    • Select the access permissions as per your requirements.
    • Please enable the Run Script Checkbox and Click on Next.
    • Click on Finish.
    • Now right click the virtual directory and choose Manage Application->Advanced Setting.
    • In General Tab, click on Application Pool and choose the Application Pool name as Created by User.
    • Now click on Ok.
Step 5 :

    Check the Authentication if the windows authentication is installed then enable the Form Authentication.

Now Browse your Application.

http://msdn.microsoft.com/en-us/library/zwk103ab.aspx

No comments:

Post a Comment