HtmlControl.GetAttribute(String) 方法

定义

获取 HtmlControl 控件上的命名特性的值。

protected:
 virtual System::String ^ GetAttribute(System::String ^ name);
protected virtual string GetAttribute (string name);
abstract member GetAttribute : string -> string
override this.GetAttribute : string -> string
Protected Overridable Function GetAttribute (name As String) As String

参数

name
String

属性名。 此自变量区分大小写。

返回

String

元素中此特性 String 形式的值。 如果此元素中不存在指定的特性,则返回一个空字符串 ("")。

注解

使用该方法 GetAttribute 访问服务器控件上的 HtmlControl 属性。 所有 HTML 服务器控件将属性存储在属性中 Control.ViewState 。 HTML 属性由 ASP.NET 页框架视为它们所属的 HTML 服务器控件上的属性。 该方法 GetAttribute 的参数 name 不区分大小写。

适用于

另请参阅