How to run ASP.NET page on windows server?

kumkumsharma

Administrator
Staff member
First thing you have to keep in mind that .Net framework installed on your server. Now you just have to activate asp.net for your domain.
  • Login to server.
  • Navigate to IIS.
  • Click on your domain for which you want to activate .net and then select Properties option.
  • Now in Home Directory tab you have to click on “Configuration”.
  • You will find option “Mappings”, here click on “Add button”.
  • Enter below details:
Code:
Executable file: C:WINNTMicrosoft.NETFrameworkv1.1.4322aspnet_isapi.dll
Extension: aspx
Limit to: GET,HEAD,POST,DEBUG
  • Now you have to enter extensions which you want to configure cs, asac, vb.
  • Now it’s done, you can check configuration.
 
Top