上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 36 下一页
摘要: using FilterExam.Fiter;using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;namespace... 阅读全文
posted @ 2018-04-24 20:57 dxm809 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 两种使用方式:1自定义类继承自相应的类或接口,重写方法,作为特性使用2 在控制器类中重写方法特性方式的使用注意:如果继承自接口需要让类实现FilterAttribute,才可以作为特性使用使用方式1:作为Controller或Action的特性使用方式2:在Globa... 阅读全文
posted @ 2018-04-24 19:48 dxm809 阅读(135) 评论(0) 推荐(0) 编辑
摘要: @model MVCFirst.Models.Person@{ Layout = null;} Add @using (Html.BeginForm("Add", "Person", FormMeth... 阅读全文
posted @ 2018-04-23 22:16 dxm809 阅读(118) 评论(0) 推荐(0) 编辑
摘要: @{ Layout = null;} Index //只能用此版本 + //第... 阅读全文
posted @ 2018-04-23 21:54 dxm809 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.添加引用RouteDebug.dll2 修改Global.asax,切记调试过后要删掉using System;using System.Collections.Generic;using System.Linq;using System.Web;using Sy... 阅读全文
posted @ 2018-04-23 15:12 dxm809 阅读(76) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Mvc;using System.Web.Routing;namespa... 阅读全文
posted @ 2018-04-23 14:59 dxm809 阅读(160) 评论(0) 推荐(0) 编辑
摘要: //HelloController.csusing FirstMVC.Models;using System;using System.Collections.Generic;using System.Linq;using System.Web;using Syste... 阅读全文
posted @ 2018-04-23 14:57 dxm809 阅读(122) 评论(0) 推荐(0) 编辑
摘要: •ViewResult:使用View()可以指定一个页面,也可以指定传递的模型对象,如果没有指定参数则表示返回与Action同名的页面•ContentResult:使用Content(string content)返回一个原始字符串•RedirectResult:使用... 阅读全文
posted @ 2018-04-23 09:19 dxm809 阅读(91) 评论(0) 推荐(0) 编辑
摘要: •在ViewModel中创建一个类型•在Action中为ViewData.Model赋值•在View中使用“@model类型”设置14 手动创建强类型视图•在ViewModel中创建一个类型•在Action中为ViewData.Model赋值•在View中使用“@mo... 阅读全文
posted @ 2018-04-22 21:06 dxm809 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1专门用于MVC的链接方式:Html.Action(“Home”,“Index”),会根据路由规则生成a标记,并且在运行时可以进行有效性检查,不需要用户点击链接后才知道链接出错了2 Raw:输出3 Encode:进行Html编码4 Action:服务器端其它页面5 表... 阅读全文
posted @ 2018-04-22 20:44 dxm809 阅读(106) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 36 下一页