Microsoft MVP성태의 닷넷 이야기
.NET Framework: 62. ASP.NET 웹 컨트롤 렌더링 가로채기 [링크 복사], [링크+제목 복사],
조회: 23179
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 


ASP.NET에서의 웹 컨트롤을 작성하다 보면, 특정 컨트롤의 출력을 알고 싶은 경우가 있습니다.

아는 것 뿐만 아니라, 해당 컨트롤의 출력이 웹 페이지로 출력되기 전에, 원하는 조작을 하고 싶을 때도 있습니다.

방법은 그다지 어렵지 않습니다. 아시겠지만, 웹 컨트롤은 일반적으로 Render 함수에서 그 출력을 정의하게 되는 데, 다음과 같은 Signature를 가지고 있습니다.

override protected void Render( System.Web.UI.HtmlTextWriter writer )
{
}

오호... 딱 보기만 해도 이미 답은 나왔습니다. ^^

우선, 출력을 가로채고 싶은 웹 컨트롤을 상속받습니다. 만약 TextBox 라면,

public class MyTextBox : TextBox
{
	override protected void Render( System.Web.UI.HtmlTextWriter writer )
	{
		StringWriter strWriter = new StringWriter();
		HtmlTextWriter htmlWriter = new HtmlTextWriter( strWriter );
		base.Render( htmlWriter );
		writer.Write( htmlWriter.InnerWriter.ToString() );
	}
}

위와 같이, 동일하게 HtmlTextWriter 를 인자로 전달하면 되는 것입니다. 그럼, base 클래스 - 즉 TextBox 클래스는 넘겨진 htmlWriter를 이용해서 해당 클래스의 내용을 출력해 줄 것이고, 이후 개발자의 입맛에 맞게 htmlWriter.InnerWriter.ToString() 값을 적절하게 조절한 다음에 원래의 writer.Write 메서드를 이용해서 출력해 주면 되는 것입니다.

기억해 두어야 할 것은... ASP.NET 웹 컨트롤은 아무리 날고 기어봐야 결국엔 HTML 문자열일 뿐이라는 사실.






[최초 등록일: ]
[최종 수정일: 4/14/2006]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
14011정성태9/7/2025317닷넷: 2361. C# - Linux 환경의 readlink 호출
14010정성태9/1/20251011오류 유형: 983. apt update 시 "The repository 'http://deb.debian.org/debian buster Release' does not have a Release file." 오류
14009정성태8/28/20251028닷넷: 2360. C# 14 - (11) Expression Tree에 선택적 인수와 명명된 인수 허용파일 다운로드1
14008정성태8/26/20251299닷넷: 2359. C# 14 - (10) 복합 대입 연산자의 오버로드 지원파일 다운로드1
14007정성태8/25/20251722닷넷: 2358. C# - 현재 빌드에 적용 중인 컴파일러 버전 확인 방법 (#error version)
14006정성태8/23/20252081Linux: 121. Linux - snap 패키지 관리자로 설치한 소프트웨어의 디렉터리 접근 제한
14005정성태8/21/20251625오류 유형: 982. sudo: unable to load /usr/libexec/sudo/sudoers.so: libssl.so.3: cannot open shared object file: No such file or directory
14004정성태8/21/20251770오류 유형: 981. dotnet 실행 시 No usable version of the libssl was found
14003정성태8/21/20251918닷넷: 2357. C# 14 - (9) 새로운 지시자 추가 (Ignored directives)
14002정성태8/20/20252095오류 유형: 980. C# - appsettings.json 파일의 설정값이 적용 안 된다면?
14001정성태8/19/20252921닷넷: 2356. .NET SDK 10 - 단일 소스 코드 파일을 빌드/실행하는 기능을 "dotnet" 명령어에 추가 [1]
14000정성태8/18/20252211오류 유형: 979. ERROR: failed to solve: failed to read dockerfile: open Dockerfile: no such file or directory
13999정성태8/15/20252254닷넷: 2355. C# 14 - (8) null 조건부 연산자 개선 - 대입문에도 사용 가능파일 다운로드1
13998정성태8/14/20252171닷넷: 2354. C# 14 - (7) 확장 메서드에 정적 메서드와 속성 지원을 위한 전용 구문 추가파일 다운로드1
13997정성태8/14/20252270Linux: 120. docker 컨테이너로 매핑된 볼륨에 컨테이너 측의 사용자 ID를 유지하면서 복사하는 방법
13996정성태8/13/20251793오류 유형: 978. Unable to find the requested .Net Framework Data Provider.
13995정성태8/13/20251926개발 환경 구성: 754. Visual C++ - 리눅스 빌드를 위한 Ubuntu 18 docker 컨테이너 설정
13994정성태8/12/20251771오류 유형: 977. SQL Server - User, group, or role '...' already exists in the current database. (Microsoft SQL Server, Error: 15023)
13993정성태8/11/20252480오류 유형: 976. Microsoft.ML.OnnxRuntimeGenAI 패키지 사용 시 "cublasLt64_12.dll" which is missing. (Error 126: "The specified module could not be found.") 오류
13992정성태8/11/20252591닷넷: 2353. C# - Foundry Local을 이용한 gpt-oss-20b 모델 사용파일 다운로드1
13991정성태8/9/20252318오류 유형: 975. winget - Foundry Local 패키지 업데이트가 안 되는 문제
13990정성태8/8/20251834Windows: 283. Time zone 설정이 없는 Windows Server 2025
13989정성태8/8/20252440닷넷: 2352. C# - Windows S-mode 환경인지 체크하는 방법파일 다운로드1
13988정성태8/8/20252498오류 유형: 974. 비주얼 스튜디오 업데이트 시 잠김 파일 경고 - Visual Studio Standard Collector Service 150 (VSStandardCollectorService150)
13987정성태8/7/20252355닷넷: 2351. C# 14 - (6) event와 생성자에도 partial 메서드 적용파일 다운로드1
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...