Freigeben über


IAttributeAccessor.SetAttribute-Methode

Legt bei der Implementierung durch eine Klasse ein Attribut mit einem zugehörigen Wert fest, das dem ASP.NET-Serversteuerelement zugewiesen werden soll.

Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)

Syntax

'Declaration
Sub SetAttribute ( _
    key As String, _
    value As String _
)
'Usage
Dim instance As IAttributeAccessor
Dim key As String
Dim value As String

instance.SetAttribute(key, value)
void SetAttribute (
    string key,
    string value
)
void SetAttribute (
    String^ key, 
    String^ value
)
void SetAttribute (
    String key, 
    String value
)
function SetAttribute (
    key : String, 
    value : String
)

Parameter

  • key
    Der Name des festzulegenden Attributs.
  • value
    Der dem Attribut zugewiesene Wert.

Beispiel

Im folgenden Codebeispiel wird eine mögliche Implementierung der SetAttribute-Methode gezeigt.

' 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 '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 void SetAttribute(String name, String value1)
{
    this.get_ViewState().set_Item(name, value1);
} //SetAttribute

Plattformen

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

IAttributeAccessor-Schnittstelle
IAttributeAccessor-Member
System.Web.UI-Namespace