HtmlTextWriter.RegisterAttribute(String, HtmlTextWriterAttribute) 方法

定义

从源文件注册标记属性(无论是文本还是动态生成的),以便可将其正确呈现给请求的客户端。

protected:
 static void RegisterAttribute(System::String ^ name, System::Web::UI::HtmlTextWriterAttribute key);
protected static void RegisterAttribute (string name, System.Web.UI.HtmlTextWriterAttribute key);
static member RegisterAttribute : string * System.Web.UI.HtmlTextWriterAttribute -> unit
Protected Shared Sub RegisterAttribute (name As String, key As HtmlTextWriterAttribute)

参数

name
String

包含要注册的标记属性名称的字符串。

key
HtmlTextWriterAttribute

与属性名称对应的 HtmlTextWriterAttribute

注解

创建第一个HtmlTextWriter对象时,通过调用 RegisterAttribute 方法注册 HTML 标记语言的预定义属性。 在其他时间可以使用 方法注册 RegisterAttribute 动态属性。

方法使用的 RegisterAttribute 注册表为 static,因此属性注册适用于主计算机上的所有 HtmlTextWriter 对象。

适用于

另请参阅