MVCAction接受与返回
//Action方法接受有:如下四种: //Test(int id) 接受url路由中配置的同名参数 //通过request.Form/request.querystring 接受(get) //Test(Models.authors model)//模型绑定 //Test(FormCollection form) //Action方法输出返回值: //string //ActionResult //jsonResult
Models.authors modelsauthors = new authors() { au_fname = "德国传智播客。。。" };
ViewData.Model = modelsauthors;
// View视图中 @ViewData.Model.au_fname
@Model.au_fname
传到视图:
ViewBag
ViewData
tempData
Model
转载 请注明原文地址并标明转载:http://www.cnblogs.com/laopo
商业用途请与我联系:lcfhn168@163.com