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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









TagPrefixAttribute

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

Tag prefixes are used to identify control elements in an
.aspx file. For example, all pre-built ASP.NET
controls have a tag prefix of asp:, as in
<asp:Label />. You can use the
TagPrefixAttribute for your custom controls to
define a different tag, which can help you distinguish your controls
easily. The portion of the tag after the tag prefix is the control
class name. Alternatively, you can use the
<Register> directive in the
.aspx file (not the code-behind file).

public sealed class 

TagPrefixAttribute : Attribute {
// Public Constructors
public

TagPrefixAttribute (string

namespaceName , string

tagPrefix );
// Public Instance Properties
public string

NamespaceName {get; }
public string

TagPrefix {get; }
}



Hierarchy


System.Object
System.Attribute
TagPrefixAttribute

Valid On


Assembly


/ 873