[HttpGet] public ActionResult Modify(int id) { Books mod=db.Books.Where(b => b.Id == id).FirstOrDefault(); if (mod != null) { ViewData["category"] = d ...
分类:
Web程序 时间:
2016-05-30 21:25:02
阅读次数:
1390
MVC框架 Model View Controller,其实是业务层和视图层的框架。 该框架的特点是: 1.业务层非常清晰,一个控制器里的一个Action只完成一件事情. 2.与视图交互逻辑也非常清晰,通过Model传递,或者说将业务处理完成的数据,封装成视图模型,传给视图,还提供了ViewBag属 ...
分类:
Web程序 时间:
2016-05-24 15:00:31
阅读次数:
190
在ASP.NET MVC中,经常会在Controller与View之间传递数据 1、Controller向View中传递数据 (1)使用ViewData["user"] (2)使用ViewBag.user (3)使用TempData["user"] (4)使用Model(强类型) 区别: (1)Vi ...
分类:
Web程序 时间:
2016-05-18 14:33:11
阅读次数:
246
前端请求代码 @{ ViewBag.Title = "View1";} <h2>返回图片</h2> <hr/><img src="/Home/Returnimg"> 后端返回图片代码 public ActionResult Returnimg() { Bitmap bmp = new Bitmap( ...
分类:
Web程序 时间:
2016-05-15 15:16:26
阅读次数:
664
1、Asp.net MVC接收浏览器参数 HttpRequest、FormCollection、Model 2、控制器类传数据给视图 ViewData、ViewBag、Model、TempData 注意:ViewData与ViewBag数据共享;Model本质是ViewData的属性;TempDat ...
分类:
Web程序 时间:
2016-05-13 14:09:17
阅读次数:
182
一、控制器返回一个ViewBag MultiSelecList值。 public ActionResult Create() { ViewBag.ReviewIndexItems = new MultiSelectList(db.ReviewIndexItems.OrderBy(item => it ...
分类:
Web程序 时间:
2016-05-12 01:40:30
阅读次数:
231
1.ViewData 1.1 ViewData继承了IDictionary<string, object>,因此在设置ViewData属性时,传入key必须要字符串型别,value可以是任意类型。 1.2 ViewData它只会存在这次的HTTP要求而已,而不像Session可以将数据带到下HTTP ...
分类:
Web程序 时间:
2016-05-12 01:37:29
阅读次数:
212
1 @{ int c=0;} 2 <table style="width:100%;border:0;" cellspacing="0" cellpadding="0" class="sy_table"> 3 <tr> 4 @foreach (DataRow dr in (ViewBag.proLi ...
分类:
其他好文 时间:
2016-05-05 09:43:54
阅读次数:
163
本人也是刚接触微信开发不久,希望能给小白一些帮助,下面直接看代码: 项目结构图: 前台页面效果: 一、前台页面:Index.cshtml @{ ViewBag.Title = "微信公众号自定义菜单";}<script type="text/javascript"> function Post() ...
分类:
微信 时间:
2016-05-01 13:36:31
阅读次数:
342
public ActionResult Browse(string id){ using (musicstoreEntities db = new musicstoreEntities()) { ViewBag.GenreId = id; int count = db.Albums.Count(a ...
分类:
Web程序 时间:
2016-04-26 23:44:48
阅读次数:
277