Hi,
I want to change page content while it is going from the server because i need to add some advertisements inside the html elements that are advertisement holder.
protected void Application_PreSendRequestContent(object sender, EventArgs e)
this is good but i couldn't get access to HttpContext
. Should i, i don't know :)
But in this method:
protected void Application_EndRequest(object sender, EventArgs e)
i could get the HttpContext
but i couldn't find the server response in it.
How can i do this?