摘要: 下面的代码参考了 AuthorizeAttribute , 实际中 if (!AuthorizeCore()) {。。。。。} 的代码根据实际情况进行改写,如自动跳转至登录,或我现在在DWZ中可以返回 JSON格式的数据等。 这样,至少可以做的是少写没必要的很多重复的代码了。 少写几行代码比什么都重要。 /// <summary> /// 自定权限操作的方法 , add... 阅读全文
posted @ 2013-01-08 18:20 张保维 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 下面的代码还是有些问题的,随后再解决吧 @{ var pagination = ViewBag.pagination as DwzMvc.DwzPagination; } <div class="panelBar"> <div class="pages"> <span>显示</span> ... 阅读全文
posted @ 2013-01-06 17:57 张保维 阅读(356) 评论(0) 推荐(0) 编辑
摘要: $max = strtotime(date("Y-m-d"));$interval=60*60*25*2;header ("Last-Modified: " . gmdate ('r', $max));header ("Expires: " . gmdate ("r", ($max + $interval)));header ("Cache-Control: max-age=$int... 阅读全文
posted @ 2012-12-26 10:48 张保维 阅读(109) 评论(0) 推荐(0) 编辑
摘要: DWZ 中 服务器端响应 Ajax表单提交后服务器端需要返回以下json代码: { "statusCode":"200", "message":"操作成功", "navTabId":"", "rel":"", "callbackType":"closeCurrent", "forwardUrl":"... 阅读全文
posted @ 2012-12-25 18:25 张保维 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 我们既要使用 EF 生成的Model,然而我们又不想在 UI 层上使用 DbContext,所以我们在生成 EF Entity 的时候 将 Entity Container 访问设置 为 internal , 这样就可以将 context进行隐藏, 如果使用 Code First 的时候 ,我们就将 context.tt 中的 public clas... 阅读全文
posted @ 2012-12-25 11:31 张保维 阅读(428) 评论(0) 推荐(0) 编辑
摘要: <add name="MVCWebContext" connectionString="Data Source=(localdb)\v11.0; Initial Catalog=MVCWebContext-20121224135911; Integrated Security=True; MultipleActiveResultSets=True; AttachDbFilename=|DataDi... 阅读全文
posted @ 2012-12-25 11:15 张保维 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 要取得 Conext 中相关的表的信息, 然后在 ContextManger中管理多个 context ,通过 IRespontry《Entity》根据 类型再自动选择 Conext, 从网上看到一个这样的方法:var entities = (context as IObjectContextAdapter).ObjectContext.MetadataWorkspace.GetItems<E... 阅读全文
posted @ 2012-12-22 15:35 张保维 阅读(1831) 评论(0) 推荐(0) 编辑
摘要: WEB API会根据请求的HTTP头自动判断返回是 JSON还是XML,如果同时都支持的情况下,会优先返回 JSON, 这证明MS也对XML的一种态度吧。 public class YourApplication : System.Web.HttpApplication { protected void Application_Start() { ... 阅读全文
posted @ 2012-12-19 16:24 张保维 阅读(250) 评论(0) 推荐(0) 编辑
摘要: "C:/Program Files/Internet Explorer/iexplore.exe" -k "http://www.google.com" 阅读全文
posted @ 2012-12-19 11:31 张保维 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 参考 : http://blog.csdn.net/love_se/article/details/7754274 首先是安装Go,这里有很详细的安装说明,http://code.google.com/p/golang-china/wiki/Install 或者http://golang.org/doc/install 下面我们在window下面安装,google有提供win安装包,对于新手... 阅读全文
posted @ 2012-10-27 10:27 张保维 阅读(331) 评论(0) 推荐(0) 编辑