Y
Yourself
Is there anyway of processing an ASP.NET page after the code behind has run,
but before it's presented as HTML?
What I'm trying to do is alter some of the markup that a content management
system produces, and I don't have access to the source code to recompile any
of the code behind stuff.
I guess I could put a user control on the bottom of every aspx page and in
the Page_Load method, access the controls on the page through
Parent.Page.FindControl("id").
That's what I've been trying to do, but is there any better and more
eloquent way?
but before it's presented as HTML?
What I'm trying to do is alter some of the markup that a content management
system produces, and I don't have access to the source code to recompile any
of the code behind stuff.
I guess I could put a user control on the bottom of every aspx page and in
the Page_Load method, access the controls on the page through
Parent.Page.FindControl("id").
That's what I've been trying to do, but is there any better and more
eloquent way?