AttributeCollection.Clear 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서버 컨트롤의 AttributeCollection 개체에서 모든 특성을 제거합니다.
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
예제
다음 예제에서는 프로그래밍 방식으로 HTML 서버 컨트롤의 AttributeCollection 개체에서 모든 특성을 제거 하는 방법을 보여 줍니다.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void ClearAttribute_Click(object sender, EventArgs e)
{
FirstSelect.Attributes.Clear();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>AttributeCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Make a selection:
<select id="FirstSelect"
style="font:16pt verdana; background-color:yellow; color:black;"
runat="server">
<option>This</option>
<option>That</option>
<option>Other</option>
</select>
<br/><br/>
<input type="submit"
id="clearattributes"
value="clear all attributes"
onserverclick="ClearAttribute_Click"
runat="server"/>
</div>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub ClearAttribute_Click(ByVal sender As Object, ByVal e As System.EventArgs)
FirstSelect.Attributes.Clear()
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>AttributeCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Make a selection:
<select id="firstselect"
style="font:16pt verdana;background-color:yellow;color:black;"
runat="server">
<option>This</option>
<option>That</option>
<option>Other</option>
</select>
<br/><br/>
<input type="submit"
id="clearattributes"
value="clear all attributes"
onserverclick="clearattribute_click"
runat="server"/>
</div>
</form>
</body>
</html>