03-29-04 06:42 PM
Hi David,
yes there is "similar" code that shows how to override the render method of
a placeholder control.
So if you only need a starter for this part of the problem, check out this
code:
protected override void Render(System.Web.UI.HtmlTextWriter output)
{
TextWriter tempWriter = new StringWriter();
base.Render(new System.Web.UI.HtmlTextWriter(tempWriter));
string orightml= tempWriter.ToString();
string newhtml = ModifyTheHtmlStream(orightml);
output.Write(newhtml);
}
Cheers,
Stefan.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"David" <anonymous@discussions.microsoft.com> wrote in message
news:3BC70481-D4C9-4186-B09A-4CE26F70D25F@microsoft.com...
> Thanks Stephan,
> ...is the source code available - or some equivalent sample code? This
would make it easy to modify.
>
> David
[ Post a follow-up to this message ]
|