1.Routing : 路由
主要是比对通过浏览器传来的http要求与响应适当的网址给浏览器。@Html.ActionLink("关于","About","Home")
这段代码生成的HTML超连接: 关于 2. 默认情况下 网址路由规则定义在 App_Start\RouteConfig.cs...
分类:
Web程序 时间:
2014-05-23 03:53:47
阅读次数:
405
MVC团队组合模式,主要源于J2EE中常说的MVC演变而来。确切地说这个东西是我自己杜撰出来的,但又经历过一些项目实践,今天拿出来在与大伙这里说说,一来弥补一下自己长期不写技术类文章的缺陷,不然很多人又说我作为一个软件人,在博客中连起码的技术东西都没有,很是惭愧。二来也想把自己经历过的丁点经验告诉大伙,至于是对是错,有用与否,那只有天晓得了,哈哈。。。。
说到MVC团队组合模式,那就要...
分类:
Web程序 时间:
2014-05-23 02:30:41
阅读次数:
392
using System;using
System.Collections.Generic;using System.Linq;using System.Web;using
System.Web.Mvc;namespace 过滤器.Filtes{ /// /// 授权过滤器,在Acti...
分类:
Web程序 时间:
2014-05-22 16:12:14
阅读次数:
371
using System;using
System.Collections.Generic;using System.Linq;using System.Web;using
System.Web.Mvc;using 过滤器.Controllers;namespace 过滤器.Filtes{ p...
分类:
Web程序 时间:
2014-05-22 15:54:09
阅读次数:
308
using System;using System.Collections.Generic;using
System.Linq;using System.Web;using System.Web.Mvc;using
System.Web.Security;namespace 验证权限.Control...
分类:
Web程序 时间:
2014-05-22 15:36:02
阅读次数:
264
@model MvcApplication1.Models.ViewClass@{
ViewBag.Title = "View2";}@******引用这两个js实现客户端的验证
********@viewdata无法跨控制传值ViewData:@ViewData["View1"]Temp...
分类:
Web程序 时间:
2014-05-22 14:47:42
阅读次数:
246
@{ ViewBag.Title = "主页";}
这里就是渲染Body啦.~~不需要写神马<asp:Content
/>,其实因为RenderBody()不在有歧义.@ViewBag.Message 若要了解有关 ASP.NET MVC 的更多信息,请访问
http:...
分类:
Web程序 时间:
2014-05-22 14:42:21
阅读次数:
278
@{ ViewBag.Title = "ajax";}@using
(@Html.BeginForm()){ @Ajax.ActionLink("这是一个ajax请求", "ajax", new AjaxOptions{
UpdateTargetId = "ajaxId", //I...
分类:
Web程序 时间:
2014-05-22 14:37:30
阅读次数:
254
HttpUtility.HtmlEncode来预处理用户输入,这能阻止用户向视图中用链接注入js代码或html标记1、[Required]:非空验证2、[StringLength(**)]:设置字符的长度2.1、[StringLength(**,MinimumLength=*):设置字符长度Mini...
分类:
Web程序 时间:
2014-05-22 14:35:38
阅读次数:
340
using System;using
System.Collections.Generic;using System.Linq;using System.Web;using
System.Web.Mvc;namespace 过滤器.Filtes{ /// /// 全局异常过滤器 ...
分类:
Web程序 时间:
2014-05-22 13:54:14
阅读次数:
342