控制器-各种ActionResult
我们所看到的Action都是return View();我们可以看作这个返回值用于解析一个aspx文件。而它的返回类型是ActionResult如
public ActionResult Index()
{
return View();
}
除了View()...
分类:
其他好文 时间:
2014-09-24 00:14:05
阅读次数:
329
MVC笔记 Controller相关技术
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.IO;
namespace DemoRC.Controlle...
分类:
其他好文 时间:
2014-09-23 23:04:15
阅读次数:
179