From 3b842126ae5be303c185a79dc048714591d2e25f Mon Sep 17 00:00:00 2001 From: Aftab Ansari Date: Mon, 25 Jul 2016 23:31:21 +0530 Subject: [PATCH] ID parameter corrected to Id (#1714) --- aspnet/tutorials/first-mvc-app/controller-methods-views.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet/tutorials/first-mvc-app/controller-methods-views.rst b/aspnet/tutorials/first-mvc-app/controller-methods-views.rst index 14f8f16c75..66c8dd96df 100644 --- a/aspnet/tutorials/first-mvc-app/controller-methods-views.rst +++ b/aspnet/tutorials/first-mvc-app/controller-methods-views.rst @@ -1,4 +1,4 @@ -Controller methods and views +Controller methods and views ================================================= By `Rick Anderson`_ @@ -63,7 +63,7 @@ Recall the format for routing set in the *Startup.cs* file. :start-after: app.UseIdentity(); :end-before: SeedData.Initialize(app.ApplicationServices); -ASP.NET Core translates ``http://localhost:1234/Movies/Edit/4`` into a request to the ``Edit`` action method of the ``Movies`` controller with the parameter ``ID`` of 4. (Controller methods are also known as action methods.) +ASP.NET Core translates ``http://localhost:1234/Movies/Edit/4`` into a request to the ``Edit`` action method of the ``Movies`` controller with the parameter ``Id`` of 4. (Controller methods are also known as action methods.) :doc:`/mvc/views/tag-helpers/index` are one of the most popular new features in ASP.NET Core. See `Additional resources`_ for more information.