上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 25 下一页
摘要: LINQ to Entities 是 LINQ 中最吸引人的部分。它让你可以使用标准的 C# 对象与数据库的结构和数据打交道。使用 LINQ to Entities 时,LINQ 查询在后台转换为 SQL 查询并在需要数据的时候执行,即开始枚举结果的时候执行。LINQ to Entities 还为你... 阅读全文
posted @ 2014-06-14 14:45 MrMrCash 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: 随笔- 28 文章- 31 评论- 16MVC 自定义AuthorizeAttribute实现权限管理在上一节中提到可以使用AuthorizeAttribute进行权限管理: [Authorize] public ActionResult TestAuthorize() ... 阅读全文
posted @ 2014-06-14 14:44 MrMrCash 阅读(4741) 评论(0) 推荐(2) 编辑
摘要: 第一步,自定义 AuthorizeAttribute。public class CustomAuthorizeAttribute : AuthorizeAttribute { public override void OnAuthorization(AuthorizationCo... 阅读全文
posted @ 2014-06-14 13:51 MrMrCash 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: private static string getLinkHtml(UrlHelper urlHelper, bool useAjax, string ajaxSuccessFunction, string linkContent, string actionName, string control... 阅读全文
posted @ 2014-05-27 00:56 MrMrCash 阅读(454) 评论(0) 推荐(0) 编辑
摘要: UCJqOrderList @model PagedList订单编号订单日期顾客编号收货地址@foreach(Order od in Model) { @od.OrderID@od.OrderDate.ToString()@od.CustomerID @od.Ship... 阅读全文
posted @ 2014-05-25 23:40 MrMrCash 阅读(451) 评论(0) 推荐(0) 编辑
摘要: public ActionResult Index(int? pageIndex) { List data = new List(); for (int i = 0; i pagedList = new PagedList(data.As... 阅读全文
posted @ 2014-05-25 23:32 MrMrCash 阅读(171) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace MvcTest.Extends{ /// /// 分页元素位置 /// public en... 阅读全文
posted @ 2014-05-25 12:34 MrMrCash 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 阅读目录开始第一代技术:生成客户端代理脚本调用服务端新技术的改进方向第二代技术:jQuery直接调用WebService第三代技术:更简单的数据格式第四代技术:直接提交表单多submit按钮的提交(用jQuery.form实现)批量输入控件的提交(用jQuery.form实现)提交复杂表单(用jQu... 阅读全文
posted @ 2014-05-18 00:57 MrMrCash 阅读(362) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/wuhuacong/p/3734614.html 阅读全文
posted @ 2014-05-18 00:46 MrMrCash 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 通过CSS3 Media Query实现响应式Web设计一、响应式设计(一)响应式设计初识,一个小小的demo,用来理解什么是响应式今天的一个小小的demo,让我重新的认识了什么是响应式网页设计。我之前一直以为主要一个网页在不同的设备上浏览,网页可以自适应设备的屏幕大小,而不发生结构变形。其实我觉得... 阅读全文
posted @ 2014-05-18 00:28 MrMrCash 阅读(270) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 25 下一页