ASP.NET MVC 4 Attribute特性

Attributes特性

[AcceptVerbs(…)]

To specify HTTP verbs an action method will respond to.

要指定HTTP动词的将响应的一个操作方法。

[ActionName(…)]

To define the name of an action

定义一个动作的名称

[AdditionalMetadata(…)]

to populate the ModelMetadata.AdditionalValues dictionary for a model property.

填充一个模型属性的ModelMetadata.AdditionalValues字典。

[AllowHtml]

To allow HTML markup during model binding by skipping request validation for the property.

允许HTML标记在模型绑定通过跳过属性的请求验证。

[AsyncTimeout(…)]

To set the timeout value, in milliseconds, for an asynchronous method.

要设置超时值,以毫秒为单位的异步方法。

[Authorize(…)]

To restrict access by callers to an action method.

调用者的操作方法来限制访问。

[ChildActionOnly]

To indicate that an action method should be called only as a child action.

要表明,作为一个的操作方法只应被子动作调用。

[HandleError(...)]

to handle an exception that is thrown by an action method.

处理异常就是将一个操作方法抛出。

[HiddenInput(…)]

To render a property or field value as a hidden input element.

为了呈现一个隐藏的输入元素属性或字段的值。

[HttpDelete]

to restrict an action method to handle only HTTP DELETE requests.

限制一个动作方法只处理HTTP DELETE请求。

[HttpGet]

to restrict an action method to handle only HTTP Get requests.

限制一个动作方法只处理HTTP GET请求。

[HttpPost]

to restrict an action method to handle only HTTP Post requests.

限制一个动作方法只处理HTTP POST请求。

[HttpPut]

to restrict an action method to handle only HTTP Put requests.

限制一个动作方法只处理HTTP PUT请求。

[ModelBinder(..)]

to associate a model type to a model-builder type.

关联模型类型的模型生成器类型。

[NoAsyncTimeout]

To set the timeout to infinite (never).

要设置超时无限(从不)。

[NonAction]

To indicate that a controller method is not an action method.

为了表明控制器方法不是一个操作方法。

[OutputCache(..)]

To mark an action method whose output will be cached.

为了标记其产出将是缓存的一个操作方法。

[Remote(…)]

It is used to invoke the server-based validation from client side.

它是用于从客户端调用基于服务器的验证。

[RequireHttps]

It forces an unsecured HTTP request to be re-sent over HTTPS.

它迫使重新通过HTTPS发送不安全的HTTP请求。

[SessionState(…)]

Specifies the session state of the controller.

指定控制器的会话状态。

[ValidateInput(...)]

To mark action methods whose input must be validated.

为了标记一个动作方法的输入必须进行验证。

时间: 2024-10-13 05:44:30

ASP.NET MVC 4 Attribute特性的相关文章

ASP.NET MVC基于标注特性的Model验证:将ValidationAttribute应用到参数上

原文:ASP.NET MVC基于标注特性的Model验证:将ValidationAttribute应用到参数上 ASP.NET MVC默认采用基于标准特性的Model验证机制,但是只有应用在Model类型及其属性上的ValidationAttribute才有效.如果我们能够将ValidationAttribute特性直接应用到参数上,我们不但可以实现简单类型(比如int.double等)数据的Model验证,还能够实现“一个Model类型,多种验证规则”,本篇文章将为你提供相关的解决方案(源代码

ASP.NET MVC基于标注特性的Model验证:一个Model,多种验证规则

原文:ASP.NET MVC基于标注特性的Model验证:一个Model,多种验证规则 对于Model验证,理想的设计应该是场景驱动的,而不是Model(类型)驱动的,也就是对于同一个Model对象,在不同的使用场景中可能具有不同的验证规则.举个简单的例子,对于一个表示应聘者的数据对象来说,针对应聘的岗位不同,肯定对应聘者的年龄.性别.专业技能等方面有不同的要求.但是ASP.NET MVC的Model验证确是Model驱动的,因为验证规则以验证特性的形式应用到Model类型及其属性上.这样的验证

[转][译]ASP.NET MVC 4 移动特性

此教程将讨论ASP.NET MVC 4 Web应用程序里的移动特性.对于此教程,可以使用 Visual Studio Express 2012 或者 Visual Web Developer 2010 Express Service Pack 1 ("Visual Web Developer 或者 VWD").  如果你已经有了专业版本的 Visual Studio 你也可以使用. 开始之前,确保你已经安装了以下列出的必需项. Visual Studio Express 2012 (推

(转) 一步一步学习ASP.NET 5 (四)- ASP.NET MVC 6四大特性

转发:微软MVP 卢建晖 的文章,希望对大家有帮助.原文:http://blog.csdn.net/kinfey/article/details/44459625 编者语 : 昨晚写好的文章居然csdn不审核,这个也难怪人,但自己比较忙没办法.分享继续,今天谈ASP.NET MVC 6. 我蛮喜欢Ruby On Rails 这种约定胜于配置的框架,在.NET 有ASP.NET MVC 和Java有Play! Framework .  ASP.NET MVC 版本基本上每年一更新,从不让你失望.我

微软下一代网站开发框架:ASP.NET MVC 6 新特性揭秘

 国内第一个<微软下一代网站开发框架:ASP.NET MVC 6 新特性揭秘 >课程 微软特邀讲师 徐雷!周六晚8点YY预定:http://t.cn/RPKMLGF 微软Visual Studio 2014 即将发布!ASP.NET MVC 6有什么新特性? Web API 3.0有什么新变化? 什么是动态编译?什么是原生编译?@微软中国MSDN 收起|查看大图|向左转|向右转 微软下一代网站开发框架:ASP.NET MVC 6 新特性揭秘

ASP.NET MVC 使用Remote特性实现远程属性验证

RemoteAttribute是asp.net mvc 的一个验证特性,它位于System.Web.Mvc命名空间 下面通过例子来说明 很多系统中都有会员这个功能,会员在前台注册时,用户名不能与现有的用户名重复,还要求输入手机号码去注册,同时手机号码也需要验证是否重复,下面是实体类 /// <summary> /// 会员 /// </summary> public class Member { public int Id { get; set; } [Required(Error

ASP.NET MVC中MaxLength特性设置无效

在ASP.NET MVC项目中,给某个Model打上了MaxLength特性如下: public class SomeClass { [MaxLength(16, ErrorMessage = "最大长度16")] public string SomeProperty{get;set;} } 但在其对应的表单元素中并没有出现类似data-val-length属性. 解决办法:使用StringLength替代MaxLength. public class SomeClass { [Str

ASP.NET MVC之路由特性以及母版页呈现方式(十二)

前言 这一节我们开始讲讲基础的东西也就是如题目所言,个人觉得当学习或者利用MVC时,必须得知道最新迭代版本新增了什么,至少得知道MVC 3.MVC 4或者MVC 5有什么区别,而不至于当利用到低版本时,出现某些特性就懵逼以至于认为是代码出了问题,这一点是很明确需要我们去了解. 话题 在MVC 5之前都是基于约定的路由,如下: routes.MapMvcAttributeRoutes(); routes.MapRoute( name: "Default", url: "{con

Asp.net MVC通过自定义特性实现Action日志记录

一.自定义特性 /// <summary> /// 描述特性 /// </summary> [AttributeUsage(AttributeTargets.Method)] public sealed class DescribeAttribute : Attribute { private string _funDescribe; public DescribeAttribute() { } public DescribeAttribute(string funDescribe