HtmlTextWriter.RegisterStyle(String, HtmlTextWriterStyle) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从源文件注册标记样式属性(无论是文本还是动态生成的),以便可将其正确呈现给请求的客户端。
protected:
static void RegisterStyle(System::String ^ name, System::Web::UI::HtmlTextWriterStyle key);
protected static void RegisterStyle (string name, System.Web.UI.HtmlTextWriterStyle key);
static member RegisterStyle : string * System.Web.UI.HtmlTextWriterStyle -> unit
Protected Shared Sub RegisterStyle (name As String, key As HtmlTextWriterStyle)
参数
- name
- String
从源文件传递的、指定样式名称的字符串。
与指定样式对应的 HtmlTextWriterStyle。
注解
HTML 标记语言的预定义级联样式表 (CSS) 属性通过创建第一个HtmlTextWriter对象时对RegisterStyle方法的调用进行注册。 可以使用该方法在其他时间注册 RegisterStyle 动态样式属性。
该方法使用的 RegisterStyle 注册表是 static
,因此属性的注册适用于主计算机上的所有 HtmlTextWriter 对象。