How to Publish ASP.Net MVC on IIS MVC 5.0: Part 3

Hi Guys. I am back with my next article where we'll learn how to host an ASP.Net MVC 5.0 application to Localhost or IIS. So let's see first how to create a website on Visual Studio 2015 with ASP.Net MVC 5.0 so read my previous articles to learn more about ASP.Net MVC Framework. Links.

So let's start.

We have an ASP.NET MVC 5.0 application in Visual Studio 2015 so open the website solution and see, if we already have a controller and view that is already running but not on IIS, running on IISExpress.

ASP.NET

And this is the view output in the browser.

Localhost

The URL is http://localhost:6339/Home/Index. It can be anything because it's run by IISExpress. That is, it allows you to run each website on a unique port number. If you want to see that then you may open the IISExpress Taskbar.

FirstMVC

So now if you want to publish your website to IIS (Localhost) then check your Visual Studio to ensure it is running in Administrator mode because we can use IIS only in Administrator mode. If it is not running in Administrator mode then restart your Visual Studio to “Run as Administrator” and open your existing website.

Microsoft

Now open Solution Explorer right-click on the project file and click on Publish.

Publish

In the new window, there will be three options to publish a website.

Microsoft Azure Website

We can use this option if we want to publish my website directly to a Microsoft Windows Azure Cloud Server as a Web App. We'll see this option in the next article on how to publish on Windows Azure.

Import

We can use this option if we have directly a “.publishsettings” extension file with all the settings to define the server IP address and all the required settings for a website. Since we already have a web app on Windows, download the publish settings file import that file into this window, and just publish it so there is no need to define anything more, just click on publish after selecting that file and use it from anywhere.

Custom

We'll use this option when we need to define all the server publish settings manually, like Server Name, website name, location, and more.

So now select the last option from this window, that is Custom, and click on "Next".

Custom

Provide a new Custom profile name for your website and click on OK.

 Website

Now there are some options that we need to fill in before publishing and also are required like the first Server Name where you need to enter the IP address or Server Name where we must publish and then fill in the website Name which is the required web URL for Web site on Localhost.

Before clicking on Next click on Validate Connection to test all the settings entered by you to verify whether they are correct.

 Validate Connection

After clicking on Validate Connection if all the settings are verified correctly it allows you to go Next so now click on the Next Button.

Next

In the next setting section, you will see the list of local databases in your ASP.Net website but we don't have any local databases in my project so now go to Next.

Database

This is the last step to publish the ASP.Net website, so this option is only used to select files that we must publish and also use to preview before publishing.

Now just click the Start Preview option.

Start Preview

Then it'll show all the files from your solution that we must publish on the URL entered by you.

 Solution

Finally when you click on Publish the build process will start then the publish process starts. You can see in the Output window if all will is fine then you will get Publish Succeeded.

 Publish Succeeded

After a successfully published project, you will get a new “.pubxml” extension file in your project solution that contains all the settings that are required to publish in XML format.

 XML format

If you want to see that code so open it and see all the code.

Code

Now go to any browser that you have and enter the Website URL on which you publish on IIS.

 Website URL

Finally, we get the same output that was on IISExpress.

Output

Thanks guys. I hope you enjoyed my article, How to Publish an ASP.Net MVC 5.0 Application on IIS.

Thanks Again.


Similar Articles