AttributeCollection.Remove(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서버 컨트롤의 AttributeCollection 개체에서 특성을 제거합니다.
public:
void Remove(System::String ^ key);
public void Remove (string key);
member this.Remove : string -> unit
Public Sub Remove (key As String)
매개 변수
- key
- String
제거할 특성의 이름입니다.
예제
다음 예제에서는 프로그래밍 방식으로 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 SubmitBtn_Click(object sender, EventArgs e)
{
FirstSelect.Attributes.Remove("Size");
}
</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"
size="10"
runat="server">
<option>This</option>
<option>That</option>
<option>Other</option>
</select>
<br/><br/>
<input type="submit"
id="SubmitBtn"
value="Remove Size Attribute"
onserverclick="SubmitBtn_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 SubmitBtn_Click(ByVal sender As Object, ByVal e As System.EventArgs)
FirstSelect.Attributes.Remove("Size")
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"
size="10"
runat="server">
<option>This</option>
<option>That</option>
<option>Other</option>
</select>
<br/><br/>
<input type="submit"
id="SubmitBtn"
value="Remove Size Attribute"
onserverclick="SubmitBtn_Click"
runat="server"/>
</div>
</form>
</body>
</html>
설명
개체에 AttributeCollection 지정된 key
특성이 없으면 컬렉션은 변경되지 않은 상태로 유지됩니다. 예외는 throw되지 않습니다.