Movatterモバイル変換


[0]ホーム

URL:


Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit focus mode

Getting started with ASP.NET MVC 5

  • 2023-10-12
Feedback

In this article

byRick Anderson

Note

An updated version of this tutorial is availablehere using the latest version ofVisual Studio. The new tutorial usesASP.NET Core MVC, which providesmany improvements over this tutorial.

This tutorial teaches ASP.NET Core MVC with controllers and views. Razor Pages is a new alternative in ASP.NET Core, a page-based programming model that makes building web UI easier and more productive. We recommend you try theRazor Pages tutorial before the MVC version. The Razor Pages tutorial:

  • Is easier to follow.
  • Covers more features.
  • Is the preferred approach for new app development.

This tutorial teaches you the basics of building an ASP.NET MVC 5 web app usingVisual Studio 2017. The final source code for the tutorial is located onGitHub.

This tutorial was written byScott Guthrie (twitter@scottgu ),Scott Hanselman (twitter:@shanselman ), andRick Anderson (@RickAndMSFT )

You need an Azure account to deploy this app to Azure:

  • You canopen an Azure account for free - You get credits you can use to try out paid Azure services, and even after they're used up you can keep the account and use free Azure services.
  • You canactivate MSDN subscriber benefits - Your MSDN subscription gives you credits every month that you can use for paid Azure services.

Get started

Start byinstalling Visual Studio 2017. Then, open Visual Studio.

Visual Studio is an IDE, or integrated development environment. Just like you use Microsoft Word to write documents, you'll use an IDE to create applications. In Visual Studio, there's a list along the bottom showing various options available to you. There's also a menu that provides another way to perform tasks in the IDE. For example, instead of selectingNew Project on theStart page, you can use the menu bar and selectFile >New Project.

Screenshot that shows the Visual Studio Start Page. Create new project is circled in red.

Create your first app

On theStart page, selectNew Project. In theNew project dialog box, select theVisual C# category on the left, thenWeb, and then select theASP.NET Web Application (.NET Framework) project template. Name your project "MvcMovie" and then chooseOK.

Screenshot that shows the New Project window. Web and A S P dot NET Web Application dot NET Framework are selected.

In theNew ASP.NET Web Application dialog, chooseMVC and then chooseOK.

Screenshot that shows the New A S P dot NET Web Application dialog. M V C is selected.

Visual Studio used a default template for the ASP.NET MVC project you just created, so you have a working application right now without doing anything! This is a simple "Hello World!" project, and it's a good place to start your application.

Screenshot that shows the M V C Movie window open to the Overview page.

PressF5 to start debugging. When you pressF5, Visual Studio startsIIS Express and runs your web app. Visual Studio then launches a browser and opens the application's home page. Notice that the address bar of the browser sayslocalhost:port# and not something likeexample.com. That's becauselocalhost always points to your own local computer, which in this case is running the application you just built. When Visual Studio runs a web project, a random port is used for the web server. In the image below, the port number is 1234. When you run the application, you'll see a different port number.

Screenshot that shows the A S P dot NET Home Page.

Right out of the box this default template gives youHome,Contact, andAbout pages. The image below doesn't show theHome,About, andContact links. Depending on the size of your browser window, you might need to click the navigation icon to see these links.

Screenshot that shows the A S P dot NET Home Page in a smaller display window. The three lines indicating the navigation menu are circled in red.

The application also provides support to register and log in. The next step is to change how this application works and learn a little bit about ASP.NET MVC. Close the ASP.NET MVC application and let's change some code.

For a list of current tutorials, seeMVC recommended articles.


Feedback

Was this page helpful?

YesNo

In this article

Was this page helpful?

YesNo