动作方法
Posted fight139
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动作方法相关的知识,希望对你有一定的参考价值。
1.View方法
public ActionResult Index() { //完整路径 return View("~/Areas/Admin/Views/Home/Index.cshtml"); }
ActionResult解析:(抽象类)视图结果
子类:
System.Web.Mvc.ContentResult:ContentResult Controller.Content("") 向用户输出字符串,没有多余的文本 System.Web.Mvc.EmptyResult: 返回空内容,Controller没有提供方法 System.Web.Mvc.FileResult(抽象): 返回一个文件,用于验证码 FileContentResult(子类): Controller.File(new byte[],""); e.g return new FileContentResult(new byte[1024],"image/jpeg"); FilePathResult(子类): Controller.File("",""); e.g return new FilePathResult("logo.jpg","image/jpeg"); FileStreamResult(子类):e.g return new FileStreamResult(new FileStream("logo.jpg",FileMode.Open),"image/jpeg") System.Web.Mvc.ViewResult:
以上是关于动作方法的主要内容,如果未能解决你的问题,请参考以下文章