How to configure IIS for the first time for any web application?

I have a website created in ASP.NET. Currently, it opens directly using Visual Studio. Now I want this to be open using localhost with IIS features enabled.

I need steps to make this website fully IIS enabled.

+3
source share
2 answers

1- You must publish your site using Visual Studio

2- Create a virtual directory (or web application) in your IIS

3- Map Your Published Website for the IIS Alias

4 Change web.config settings if necessary

5- Check if you need to add a new HttpModule to the application

6- Browse your website at http: // Localhost / YourIISApplicationName

+5
+3

All Articles