fhuan123 发表于 2013-1-27 12:24:48

MVC 各种传值方式

【转自】:http://hi.baidu.com/honfei/blog/item/a7cdb7dd47de86d28d1029e5.html
示例一:
ViewData传值.
HomeController.cs Co
<div class="cnt">de:

<div style="border: 1px dashed #cccccc; padding: 5px 10px; margin: 2px 10px;">public ActionResult Index()
{
    ViewData["Title"] = "Home Page";
    ViewData["Message"] = "Welcome to ASP.NET MVC!";
    return View();
}
页: [1]
查看完整版本: MVC 各种传值方式