Deploy Asp.Net Application in Azure and Manage Configurations And Switch from Stating to Production
When we need to deploy an Asp.Net application on online, we need to have a virtual machine and iis installed on that machine. The deployment process will be manual. You need to manage the iis settings and point to the path/folder where your application code exists on that virtual machine. To make this process simple Azure is giving App Services which makes the deployment more simpler and quick. Steps to Deploy Asp.net Code to Azure App Service: Step #1: Go to the portal.azure.com and login with your credentials. Step #2: Now we need to create an app service. After logging in, on the left side you see different menu items listed. You need to click on App Services. Then click on Add button to add new App Service. Step #3: After clicking on Add we see all the types of App Services in the right side. Select "Asp .net Empty Web App" and then click on create button. Step #4: After clicking on Create button y...