Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

How to suppress/clear Response from within a control?

0 views
Skip to first unread message

Ahmet Gunes

unread,
Apr 14, 2008, 1:56:10 AM4/14/08
to
Hello,

I am developing a custom control.
From within this control, maybe during/before rendering, I want to totally
clear the response content and only render this control's output.
Since the Render event of the page is protected I can not attach an event
handler at runtime.
When I use Response.Clear() and/or Response.ClearContent() and/or delete
controls from the Controls collection of the Page I still get the closing
tags of form, body, and html tags in the resulting html.

I wonder if that's possible..

P.S. A similar message was also posted on aspnet.buildingcontrols and
aspnet.webcontrols lists.

Thanks in advance,

AhmetG

bruce barker

unread,
Apr 14, 2008, 11:11:01 AM4/14/08
to
protected override void Render(HtmlTextWriter writer)
{
Response.ClearContent();
// output my content

Response.End();
}


-- bruce (sqlwork.com)

0 new messages