In this tutorial, Stephen Walther introduces you to ASP.NET MVC controllers. You learn how to create new controllers and return different types of action results.

  This tutorial explores the topic of  ASP.NET MVC controllers, controller actions, and action results. After  you complete this tutorial, you will understand how controllers are  used to control the way a visitor interacts with an ASP.NET MVC website.(用ASP.NET MVC WEBSITE 如何使用控制器去访问者进行互动)

  Understanding Controllers

  MVC controllers are responsible for  responding to requests made against an ASP.NET MVC website. Each browser  request is mapped to a particular controller. For example, imagine that  you enter the following URL into the address bar of your browser:

  http://localhost/Product/Index/3

  In this case, a controller named ProductController  is invoked. The ProductController is responsible for generating the  response to the browser request. For example, the controller might return  a particular view back to the browser or the controller might redirect  the user to another controller.

  Listing 1 contains a simple controller  named ProductController.

  Listing1  - Controllers\ProductController.cs

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. using System.Web.Mvc.Ajax;
  7.  
  8. namespace MvcApplication1.Controllers
  9. {
  10. public class ProductController : Controller
  11. {
  12. //
  13. // GET: /Products/
  14.  
  15. public ActionResult Index()
  16. {
  17. // Add action logic here
  18. return View();
  19. }
  20.  
  21. }
  22. }

  As you can see from Listing 1, a controller  is just a class (a Visual Basic .NET or C# class). A controller is a  class that derives from the base System.Web.Mvc.Controller class. Because  a controller inherits from this base class, a controller inherits several  useful methods for free (We discuss these methods in a moment).

  Understanding Controller  Actions

  A controller exposes controller actions.  An action is a method on a controller that gets called when you enter  a particular URL in your browser address bar. For example, imagine that  you make a request for the following URL:

  http://localhost/Product/Index/3

  In this case, the Index() method is  called on the ProductController class. The Index() method is an example  of a controller action.

  A controller action must be a public  method of a controller class. C# methods, by default, are private methods.  Realize that any public method that you add to a controller class is  exposed as a controller action automatically (You must be careful about  this since a controller action can be invoked by anyone in the universe  simply by typing the right URL into a browser address bar).

  There are some additional requirements  that must be satisfied by a controller action. A method used as a controller  action cannot be overloaded. Furthermore, a controller action cannot  be a static method. Other than that, you can use just about any method  as a controller action.

  Understanding Action  Results

  A controller action returns something  called an action result. An action result is what a controller  action returns in response to a browser request.

  The ASP.NET MVC framework supports  several types of action results including:

  1. ViewResult - Represents   HTML and markup.
  2. EmptyResult - Represents   no result.
  3. RedirectResult - Represents   a redirection to a new URL.
  4. JsonResult - Represents   a JavaScript Object Notation result that can be used in an AJAX application.
  5. JavaScriptResult - Represents   a JavaScript script.
  6. ContentResult - Represents   a text result.
  7. FileContentResult - Represents   a downloadable file (with the binary content).
  8. FilePathResult - Represents   a downloadable file (with a path).
  9. FileStreamResult - Represents   a downloadable file (with a file stream).

  All of these action results inherit  from the base ActionResult class.

  In most cases, a controller action  returns a ViewResult. For example, the Index controller action in Listing  2 returns a ViewResult.

Listing 2  - Controllers\BookController.cs

  1. using System.Web.Mvc;
  2.  
  3. namespace MvcApplication1.Controllers
  4. {
  5. public class CustomerController : Controller
  6. {
  7. public ActionResult Details(int? id)
  8. {
  9. if (!id.HasValue)
  10. return RedirectToAction("Index");
  11.  
  12. return View();
  13. }
  14.  
  15. public ActionResult Index()
  16. {
  17. return View();
  18. }
  19.  
  20. }
  21. }

  When an action returns a ViewResult,  HTML is returned to the browser. The Index() method in Listing 2 returns  a view named Index to the browser.

  Notice that the Index() action in Listing  2 does not return a ViewResult(). Instead, the View() method of the  Controller base class is called. Normally, you do not return an action  result directly. Instead, you call one of the following methods of the  Controller base class:

  1. View - Returns a ViewResult   action result.
  2. Redirect - Returns a RedirectResult   action result.
  3. RedirectToAction - Returns   a RedirectToRouteResult action result.
  4. RedirectToRoute - Returns   a RedirectToRouteResult action result.
  5. Json - Returns a JsonResult   action result.
  6. JavaScriptResult - Returns   a JavaScriptResult.
  7. Content - Returns a ContentResult   action result.
  8. File - Returns a FileContentResult,   FilePathResult, or FileStreamResult depending on the parameters passed   to the method.

  So, if you want to return a View to  the browser, you call the View() method. If you want to redirect the  user from one controller action to another, you call the RedirectToAction()  method. For example, the Details() action in Listing 3 either displays  a view or redirects the user to the Index() action depending on whether  the Id parameter has a value.

Listing 3 - CustomerController.cs

  1. using System.Web.Mvc;
  2.  
  3. namespace MvcApplication1.Controllers
  4. {
  5. public class CustomerController : Controller
  6. {
  7. public ActionResult Details(int? id)
  8. {
  9. if (!id.HasValue)
  10. return RedirectToAction("Index");
  11.  
  12. return View();
  13. }
  14.  
  15. public ActionResult Index()
  16. {
  17. return View();
  18. }
  19.  
  20. }
  21. }

  The ContentResult action result is  special. You can use the ContentResult action result to return an action  result as plain text. For example, the Index() method in Listing 4 returns  a message as plain text and not as HTML.

Listing 4 - Controllers\StatusController.cs

  1. using System.Web.Mvc;
  2.  
  3. namespace MvcApplication1.Controllers
  4. {
  5. public class StatusController : Controller
  6. {
  7.  
  8. public ActionResult Index()
  9. {
  10. return Content("Hello World!");
  11. }
  12.  
  13. }
  14. }

  When the StatusController.Index() action  is invoked, a view is not returned. Instead, the raw text "Hello World!"  is returned to the browser.

  If a controller action returns a result  that is not an action result - for example, a date or an integer - then the result is wrapped in a ContentResult automatically. For example,  when the Index() action of the WorkController in Listing 5 is invoked,  the date is returned as a ContentResult automatically.

Listing 5 - WorkController.cs

  1. using System;
  2. using System.Web.Mvc;
  3.  
  4. namespace MvcApplication1.Controllers
  5. {
  6. public class WorkController : Controller
  7. {
  8.  
  9. public DateTime Index()
  10. {
  11. return DateTime.Now;
  12. }
  13.  
  14. }
  15. }

  The Index() action in Listing 5 returns  a DateTime object. The ASP.NET MVC framework converts the DateTime object  to a string and wraps the DateTime value in a ContentResult automatically.  The browser receives the date and time as plain text.

  Summary

  The purpose of this tutorial was to  introduce you to the concepts of ASP.NET MVC controllers, controller  actions, and controller action results. In the first section, you learned  how to add new controllers to an ASP.NET MVC project. Next, you learned  how public methods of a controller are exposed to the universe as controller  actions. Finally, we discussed the different types of action results  that can be returned from a controller action. In particular, we discussed  how to return a ViewResult, RedirectToActionResult, and ContentResult  from a controller action.

  译文:http://www.cnblogs.com/JimmyZhang/archive/2009/03/14/1411344.html

ASP.NET MVC- Controllers and Routing- Controller Overview的更多相关文章

  1. Post Complex JavaScript Objects to ASP.NET MVC Controllers

    http://www.nickriggs.com/posts/post-complex-javascript-objects-to-asp-net-mvc-controllers/     Post ...

  2. 9、ASP.NET MVC入门到精通——Controller(控制器)

    本系列目录:ASP.NET MVC4入门到精通系列目录汇总 Controller主要负责响应用户的输入.主要关注的是应用程序流,输入数据的处理,以及对相关视图(View)输出数据的提供. 继承自:Sy ...

  3. ASP.NET MVC中将数据从Controller传递到视图

    ASP.NET MVC中将数据从Controller传递到视图方法 1.ViewData ViewData的类型是字典数据,key-value 如:ViewData["Data"] ...

  4. ASP.NET MVC 学习笔记-7.自定义配置信息 ASP.NET MVC 学习笔记-6.异步控制器 ASP.NET MVC 学习笔记-5.Controller与View的数据传递 ASP.NET MVC 学习笔记-4.ASP.NET MVC中Ajax的应用 ASP.NET MVC 学习笔记-3.面向对象设计原则

    ASP.NET MVC 学习笔记-7.自定义配置信息   ASP.NET程序中的web.config文件中,在appSettings这个配置节中能够保存一些配置,比如, 1 <appSettin ...

  5. 白话ASP.NET MVC之二:Controller激活系统的概览

    前文简介:我们抽象类路由规则的对象,RouteBase是路由对象的抽象基类,ASP.NET 的路由系统中有唯一一个从RouteBase继承的路由对象,那就是Route类型了.我们注册了路由对象Rout ...

  6. 【ASP.NET MVC】View与Controller之间传递数据

    1   概述 本篇文章主要从操作上简要分析Controller<=>View之间相互传值,关于页面之间传值,如果感兴趣,可参考我另外一篇文章ASP.NET 页面之间传值的几种方式 . Co ...

  7. ASP.NET MVC 第三回 Controller与View

    这节我们让ASP.NET MVC真正的跑起来 一.新建Controller 首先我们自己新建一个新的Controller在Controllers上点右键,添加,Controller选项   之后出现一 ...

  8. asp.net MVC 5 路由 Routing

    ASP.NET MVC ,一个适用于WEB应用程序的经典模型 model-view-controller 模式.相对于web forms一个单一的整块,asp.net mvc是由连接在一起的各种代码层 ...

  9. ASP.NET MVC 学习8、Controller中的Detail和Delete方法

    参考:http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/examining-the-details-and ...

  10. ASP.NET MVC 学习4、Controller中添加SearchIndex页面,实现简单的查询功能

    参考:http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/examining-the-edit-method ...

随机推荐

  1. html5 API

    1.Canvas绘图 2.postMessage跨域.多窗口传输 3.requestAnimationFrame动画 4.PageVisibility API页面可见性 5.File 本地文件操作 6 ...

  2. TDirectory.Move移动或更名目录

    使用函数: System.IOUtils.TDirectory.Move 定义: class procedure Move(const SourceDirName, DestDirName: stri ...

  3. 安装 SQL Server 2012 的硬件和软件要求(官方全面)

    以下各节列出了安装和运行 SQL Server 2012 的最低硬件和软件要求. 有关 SharePoint 集成模式下 Analysis Services 的要求的详细信息,请参阅硬件和软件要求(S ...

  4. C语言-06复杂数据类型-02字符串

    #include <stdio.h> int main() { //char name[] = {'i', 't', 'c', 'H', 's', 't', '\0'}; char nam ...

  5. 5个有用的.net profiling工具(转)

    我们有时需要对研发的软件程序进行性能测试,这时需要用到一些Profilers工具.下面列出5个有用的.net Profilers: 1. JetBrains dotTrace JetBrains do ...

  6. caller和callee的区别

    ①.caller caller返回一个函数的引用,这个函数调用了当前的函数. 使用这个属性要注意: 1 这个属性只有当函数在执行时才有用 2 如果在javascript程序中,函数是由顶层调用的,则返 ...

  7. Codeforces Round #198 (Div. 2) —— C

    C题很容易看懂题目,不过两个循环肯定会TLE,所以得用点小聪明: 首先排好序,因为是全排列,乱序和顺序的结果是一样的: 然后呢···· 如果是数列 1 2 3 4 5 元素1 被 2 3 4 5每个减 ...

  8. X窗口系统的协议和架构

    转自X窗口系统的协议和架构 在电脑中,X窗口系统(常称作 X11.X)是一种以位图显示的网络透明化窗口系统.本条目详述 X11 的协议及其技术架构. X C/S模型和网络透明性 X 基于C/S模型.运 ...

  9. Android 制作一个网页源代码浏览器(HttpURLConnection)

    package com.wuyou.htmlcodeviewer; import android.os.Bundle; import android.os.Handler; import androi ...

  10. AsyncHttpClient 开源框架學習研究

    转载请注明出处:http://blog.csdn.net/krislight OverView: AsyncHttpClient庫 基於Apache的HttpClient框架,是一個異步的httpCl ...