title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Create a C# ASP.NET Framework web app in Azure | Microsoft Docs |
Learn how to run web apps in Azure App Service by deploying the default C# ASP.NET web app. |
app-service\web |
cephalin |
cfowler |
04a1becf-7756-4d4e-92d8-d9471c263d23 |
app-service-web |
web |
na |
na |
quickstart |
06/11/2018 |
cephalin |
mvc, devcenter |
Azure Web Apps provides a highly scalable, self-patching web hosting service. This quickstart shows how to deploy your first ASP.NET web app to Azure Web Apps. When you're finished, you'll have a resource group that consists of an App Service plan and an Azure web app with a deployed web application.
Watch the video to see this quickstart in action and then follow the steps yourself to publish your first .NET app on Azure.
[!VIDEO https://channel9.msdn.com/Shows/Azure-for-NET-Developers/Create-a-NET-app-in-Azure-Quickstart/player]
[!INCLUDE quickstarts-free-trial-note]
To complete this tutorial:
Install Visual Studio 2017 with the ASP.NET and web development workload.
If you've installed Visual Studio already, add the workloads in Visual Studio by clicking Tools > Get Tools and Features.
In Visual Studio, create a project by selecting File > New > Project.
In the New Project dialog, select Visual C# > Web > ASP.NET Web Application (.NET Framework).
Name the application myFirstAzureWebApp, and then select OK.
You can deploy any type of ASP.NET web app to Azure. For this quickstart, select the MVC template, and make sure authentication is set to No Authentication.
Select OK.
From the menu, select Debug > Start without Debugging to run the web app locally.
In the Solution Explorer, right-click the myFirstAzureWebApp project and select Publish.
Make sure that Microsoft Azure App Service is selected and select Publish.
This opens the Create App Service dialog, which helps you create all the necessary Azure resources to run the ASP.NET web app in Azure.
In the Create App Service dialog, select Add an account, and sign in to your Azure subscription. If you're already signed in, select the account containing the desired subscription from the dropdown.
Note
If you're already signed in, don't select Create yet.
[!INCLUDE resource group intro text]
Next to Resource Group, select New.
Name the resource group myResourceGroup and select OK.
[!INCLUDE app-service-plan]
Next to App Service Plan, select New.
In the Configure App Service Plan dialog, use the settings in the table following the screenshot.
Setting | Suggested Value | Description |
---|---|---|
App Service Plan | myAppServicePlan | Name of the App Service plan. |
Location | West Europe | The datacenter where the web app is hosted. |
Size | Free | Pricing tier determines hosting features. |
Select OK.
In Web App Name, type a unique app name (valid characters are a-z
, 0-9
, and -
), or accept the automatically generated unique name. The URL of the web app is http://<app_name>.azurewebsites.net
, where <app_name>
is your web app name.
Select Create to start creating the Azure resources.
Once the wizard completes, it publishes the ASP.NET web app to Azure, and then launches the app in the default browser.
The web app name specified in the create and publish step is used as the URL prefix in the format http://<app_name>.azurewebsites.net
.
Congratulations, your ASP.NET web app is running live in Azure App Service.
From the Solution Explorer, open Views\Home\Index.cshtml.
Find the <div class="jumbotron">
HTML tag near the top, and replace the entire element with the following code:
<div class="jumbotron">
<h1>ASP.NET in Azure!</h1>
<p class="lead">This is a simple app that we’ve built that demonstrates how to deploy a .NET app to Azure App Service.</p>
</div>
To redeploy to Azure, right-click the myFirstAzureWebApp project in Solution Explorer and select Publish.
On the publish page, select Publish.
When publishing completes, Visual Studio launches a browser to the URL of the web app.
Go to the Azure portal to manage the web app.
From the left menu, select App Services, and then select the name of your Azure web app.
You see your web app's Overview page. Here, you can perform basic management tasks like browse, stop, start, restart, and delete.
The left menu provides different pages for configuring your app.
[!INCLUDE Clean-up section]
[!div class="nextstepaction"] ASP.NET with SQL Database