ControlBuilder.AppendLiteralString(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 리터럴 콘텐츠를 컨트롤에 추가합니다. 이 메서드는 ASP.NET 페이지 프레임워크에서 호출합니다.
public:
virtual void AppendLiteralString(System::String ^ s);
public virtual void AppendLiteralString (string s);
abstract member AppendLiteralString : string -> unit
override this.AppendLiteralString : string -> unit
Public Overridable Sub AppendLiteralString (s As String)
매개 변수
- s
- String
컨트롤에 추가할 콘텐츠입니다.
예외
문자열 리터럴의 형식이 잘못된 경우
예제
// Override the AppendLiteralString method so that literal
// text between rows of controls are ignored.
public override void AppendLiteralString(string s)
{
// Ignores literals between rows.
}
' Override the AppendLiteralString method so that literal
' text between rows of controls are ignored.
Public Overrides Sub AppendLiteralString(s As String)
End Sub
End Class
설명
메서드를 AppendLiteralString 재정의하여 컨트롤의 여는 태그와 닫는 태그 간의 리터럴 콘텐츠가 처리되는 방식을 제어합니다. 리터럴 콘텐츠가 브라우저에서 서버 컨트롤에 전달 되는 모든 텍스트를 수 있습니다. 예를 들어 모든 HTML 요소와 여는 태그와 닫는 태그 사이의 텍스트는 리터럴 콘텐츠입니다.