Tuesday, 13 March 2012

Installing IIS and deploying the ASP web application

  • Install complete IIS package (check all items and sub-items)
  • Change the ASP version in IIS by clicking on 'Application Pools'
  • Register .NET using: c:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
  • Make 'Web -> ASP.Net Application' for windows
  • Compile the code and publish it as 'File System' to the desire directory under 'localhost/wwwroor'
  • Convert the published web folder to 'Web Application' inside the 'IIS Manager'
  • Make the 'temporary graph folder' manually on the server
  • Select the proper "Application Pool' by clicking on the desire website and 'Basic Settings'
  • Compile the project in Visual Studio and publish it under 'localhost/wwwroot/ <desire folder>'
  •  Allow users to use 'CGI' and 'ASP' services by making them 'Enable'

No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...