共用方式為


IAttributeAccessor.SetAttribute(String, String) 方法

定義

當類別實作時,指定屬性和屬性值,以指派給 ASP.NET 伺服器控制項。

public:
 void SetAttribute(System::String ^ key, System::String ^ value);
public void SetAttribute (string key, string value);
abstract member SetAttribute : string * string -> unit
Public Sub SetAttribute (key As String, value As String)

參數

key
String

要設定屬性的名稱。

value
String

指派給屬性的值。

範例

下列程式碼範例示範方法的可能實作 SetAttribute

// Implement the SetAttribute method for the control. When
// this method is called from a page, the control's properties
// are set to values defined in the page.
public void SetAttribute(String name, String value1)
{
   ViewState[name] = value1;
}
' Implement the SetAttribute method for the control. When
' this method is called from a page, the control's properties
' are set to values defined in the page.
Public Sub SetAttribute(name As String, value1 As String) Implements IAttributeAccessor.SetAttribute
   ViewState(name) = value1
End Sub

適用於