HtmlControl.Attributes 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ASP.NET 페이지 내의 서버 컨트롤 태그에 표현된 모든 특성 이름 및 값 쌍의 컬렉션을 가져옵니다.
public:
property System::Web::UI::AttributeCollection ^ Attributes { System::Web::UI::AttributeCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.UI.AttributeCollection Attributes { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Attributes : System.Web.UI.AttributeCollection
Public ReadOnly Property Attributes As AttributeCollection
속성 값
AttributeCollection 웹 페이지 내의 서버 컨트롤 태그에 표현된 모든 특성 이름 및 값 쌍을 포함하는 개체입니다.
- 특성
예제
다음 코드 예제에서는 컨트롤의 특성을 확인 하는 속성을 사용 Attributes 하는 방법을 보여 줍니다 HtmlSelect .
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
Message.InnerHtml = "<h4>The select box's attributes collection contains:</h4>";
IEnumerator keys = Select.Attributes.Keys.GetEnumerator();
while (keys.MoveNext())
{
String key = (String)keys.Current;
Message.InnerHtml += key + "=" + Select.Attributes[key] + "<br />";
}
}
</script>
<head runat="server">
<title>The select box's attributes collection contains:</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlControl Attribute Collection Example</h3>
Make a selection:
<select id="Select"
style="font: 12pt verdana;
background-color:yellow;
color:red;"
runat="server">
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
</select>
<br />
<span id="Message" enableviewstate="false" runat="server" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script language="VB" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Message.InnerHtml = "<h4>" & "The select box's attributes collection contains:" & "</h4>"
Dim keys As IEnumerator = Select1.Attributes.Keys.GetEnumerator()
While keys.MoveNext()
Dim key As String = CType(keys.Current, String)
Message.InnerHtml &= key & "=" & Select1.Attributes(key) & "<br />"
End While
End Sub 'Page_Load
</script>
<head runat="server">
<title>" & "The select box's attributes collection contains:" & "</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlControl Attribute Collection Example</h3>
Make a selection:
<select id="Select1"
style="font: 12pt verdana;
background-color:yellow;
color:red;"
runat="server">
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
</select>
<br />
<span id="Message" enableviewstate="false" runat="server" />
</form>
</body>
</html>
설명
HTML 서버 컨트롤의 특성에 프로그래밍 방식으로 액세스 하려면이 속성을 사용 합니다. 모든 HTML 서버 컨트롤은 속성에 Control.ViewState 해당 특성을 저장합니다.
HTML 특성은 .NET Framework에서 해당 특성이 속한 HTML 서버 컨트롤의 속성으로 처리됩니다.
특성 컬렉션에 대한 자세한 내용은 클래스를 참조하세요 System.Web.UI.AttributeCollection .