动作方法_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 动作方法

动作方法

 2017/11/4 13:21:39  fight139  程序员俱乐部  我要评论(0)
  • 摘要:1.View方法publicActionResultIndex(){//完整路径returnView("~/Areas/Admin/Views/Home/Index.cshtml");}ActionResult解析:(抽象类)视图结果子类:System.Web.Mvc.ContentResult:ContentResultController.Content("")向用户输出字符串,没有多余的文本System.Web.Mvc.EmptyResult:返回空内容
  • 标签:方法

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:

 

上一篇: 分区项目 下一篇: 没有下一篇了!
发表评论
用户名: 匿名