Skip to main content

Posts

Showing posts from October, 2018

Azure App Deployment

I will use the same web application which we created in my previous article ASP.NET MVC5 . Launch the publish wizard In the solution explorer right click the project  MVCProject  and select Publish. The publish wizard is automatically launched. Select the App Service  > Publish to open the Create App Service dialog. Sign in to Azure In the Create App Service dialog, Select Add an account and Sign in to your Azure subscription. if you already have an account then don't select Create . Once you select the Azure account you will see the following details on the dialog box Create a resource group A resource group is a logical container into which web apps, databases, and storage accounts are deployed and managed.we can delete the whole storage group with a single step. In dialog Next to Resource Group select New Enter MVCGroup name and click OK Create an App Service plan An App Service plan specifies the

ASP.NET MVC 5 (Part 1)

This tutorial teaches you the basics of building an ASP.NET MVC 5 web app using  Visual Studio 2017 . Get started Start by installing Visual Studio 2017. You can  Install Visual Studio 2017 community version which is free. Open Visual Studio,  Instead of selecting  New Project  on the  Start page , you can use the menu bar and select  File  >  New Project . Your first app On the  Start page , select  New Project . In the  New Project  dialog box, select the  Visual C#  category on the left, then  Web , and then select the  ASP.NET Web Application (.NET Framework)  project template. Name your project "MVCProject" and then choose  OK . In the  New ASP.NET Web Application  dialog, choose  MVC  and then choose  OK . The visual studio used the default template for the project you just created.you have a running application which is doing nothing right now. Press  F5  to start debugging. When you press  F5 , Visual Studio starts  IIS Ex