Creating ASP.NET Web App In Azure

Introduction

Azure Web App is very popular service in Azure and it is very cheap in cost as compared to the other services. It provides awesome features and a highly scalable, self-patching web hosting service. Deployment is quite simple with Azure. The advantage of Azure Web App is that it supports multiple languages, like .NET, Java, PHP, Node.js.

The code in Azure Web App is smart enough to deploy a web on Azure irrespective of the platform the web is developed on, such as - Windows, OSX, or Linux. You can deploy your website easily and make it live in seconds. Also, you can easily monitor and diagnose your website's performance and can rapidly fix issues.

You can publish your website using several publishing methods, like FTP ,TFS, Web Deploy, Git, Dropbox etc.

Let us see the demo of how we can deploy our ASP.NET website in just a few clicks.

  • Open Visual Studio 2015 and create new project.
  • Then, click on File >> New Project, and select a  Web Template.

    Azure

  • Give name and click on OK button.
  • Select the default MVC template and click OK.

    Azure

  • Now, create a Web App from Azure Portal.  - Open Azure Portal, click on "+ New" on the left side of your screen.

  • Azure

  • Click on Web + Mobile >> Web App.

    Azure

  • Give a unique App name, select Resource Group, and select Data Centre Region to deploy your app.

    Azure

  • Select Pricing tier according to your usage and click on OK.

    Azure

  • Click on "Create". Your Web App is ready to deploy on your website.
  • Once your deployment is succeeded, download the "Publish Profile" from the top of the screen.

  • Azure

  • Once it is downloaded, import it into your solution. To do this, open your Solution, right click on project, click on Publish. Then, click on Import option and browse your publisher profile from your system which you downloaded from the portal.

    Azure

  • Browse it and click on OK button.

    Azure

  • Then, click on Next. We have no need to change any setting. Just click the Next button. 
  • At last, click on "Publish" button in the pop up window.

    Azure

  • Now, you can check the status in the Output window of Visual Studio. We have successfully deployed/published our website on Azure. You can verify with your URL that you gave at the time of app creation.


    Azure
    Azure

Summary

In this article, we have learned creating about web apps in Azure and Publishing the same web app on Azure. I hope you liked it. For any questions, drop me a message or comment below.


Similar Articles