다음을 통해 공유


AttributeCollection.AddAttributes(HtmlTextWriter) 메서드

정의

특성을 태그로 렌더링해야 하는 AttributeCollection 개체에 HtmlTextWriter 클래스의 특성을 추가합니다.

public:
 void AddAttributes(System::Web::UI::HtmlTextWriter ^ writer);
public void AddAttributes (System.Web.UI.HtmlTextWriter writer);
member this.AddAttributes : System.Web.UI.HtmlTextWriter -> unit
Public Sub AddAttributes (writer As HtmlTextWriter)

매개 변수

writer
HtmlTextWriter

특성을 ASP.NET 서버 컨트롤의 여는 태그에 쓰는 HtmlTextWriter 인스턴스입니다.

예제

다음 예제에서는 라는 서버 컨트롤과 라는 myButtonmyTextBox서버 컨트롤에 ButtonTextBox 새 특성을 추가하는 방법을 보여줍니다. 그런 다음 이러한 특성을 각 컨트롤의 출력 스트림에 쓰는 사용자 지정 HtmlTextWriter 개체에 추가합니다.

myButton.Attributes.Clear();
myTextBox.Attributes.Clear();
myButton.Attributes["onClick"] = 
                "javascript:alert('Visiting msn.com');";

myTextBox.Attributes["name"] = "MyTextBox";

myTextBox.Attributes["onBlur"] = 
                 "javascript:alert('Leaving MyTextBox...');";
                           
HttpResponse myHttpResponse = Response;
HtmlTextWriter myHtmlTextWriter  = 
                 new HtmlTextWriter(myHttpResponse.Output);

myButton.Attributes.AddAttributes(myHtmlTextWriter);
myTextBox.Attributes.AddAttributes(myHtmlTextWriter);
myButton.Attributes.Clear()
myTextBox.Attributes.Clear()
myButton.Attributes("onClick") = "javascript:alert('Visiting msn.com');"

myTextBox.Attributes("name") = "MyTextBox"

myTextBox.Attributes("onBlur") = "javascript:alert('Leaving MyTextBox...');"

Dim myHttpResponse As HttpResponse = Response
Dim myHtmlTextWriter As New HtmlTextWriter(myHttpResponse.Output)

myButton.Attributes.AddAttributes(myHtmlTextWriter)
myTextBox.Attributes.AddAttributes(myHtmlTextWriter)

설명

이 메서드는 메서드에 대한 다음 호출로 렌더링할 수 있도록 모든 서버 컨트롤의 특성을 HtmlTextWriter 개체에 RenderBeginTag 복사합니다.

CheckBoxList와 같은 Calendar 다른 컨트롤에 포함된 컨트롤의 경우 포함된 컨트롤을 직접 렌더링하여 성능을 향상시킬 수 있습니다. 컨테이너 컨트롤은 모든 자식 컨트롤 특성을 컨테이너 컨트롤에 복사하고 복사한 후 렌더링해야 하므로 컨테이너 컨트롤을 통해 렌더링하는 것보다 직접 렌더링하는 것이 더 빠를 수 있습니다.

적용 대상

추가 정보