views:

417

answers:

2

I have already tried PreRenderComplete and unload is too late

+1  A: 

Generally, the only event after 'Render' for a control is 'Unload'

John
A: 

protected override void Render(HtmlTextWriter writer) { base.Render(writer);

.... place code here

Scott and the Dev Team