AttributeCollection.AddAttributes(HtmlTextWriter) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
특성을 태그로 렌더링해야 하는 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 인스턴스입니다.
예제
다음 예제에서는 라는 서버 컨트롤과 라는 myButton
myTextBox
서버 컨트롤에 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 다른 컨트롤에 포함된 컨트롤의 경우 포함된 컨트롤을 직접 렌더링하여 성능을 향상시킬 수 있습니다. 컨테이너 컨트롤은 모든 자식 컨트롤 특성을 컨테이너 컨트롤에 복사하고 복사한 후 렌더링해야 하므로 컨테이너 컨트롤을 통해 렌더링하는 것보다 직접 렌더링하는 것이 더 빠를 수 있습니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET