ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









ValidationPropertyAttribute

System.Web.UI (system.web.dll)sealed class

This attribute specifies which property of a server control should be
used for validation. Typically, this is a property like
Text, Value, or
SelectedItem. The
ValidationPropertyAttribute is used only when you
create custom controls; existing ASP.NET controls use it
intrinsically.

This attribute is applied to the class declaration, not a specific
property. You can specify the property to validate through the
attribute's Name property, as in:
[ValidationProperty("Text")].

public sealed class 

ValidationPropertyAttribute : Attribute {
// Public Constructors
public

ValidationPropertyAttribute (string

name );
// Public Instance Properties
public string

Name {get; }
}



Hierarchy


System.Object
System.Attribute
ValidationPropertyAttribute

Valid On


Class


/ 873