My aim is to stream a .htm file via Response.WriteFile("Sample.htm");
and then access a specific html element (ex. <a runat="server" id="myAnchor" />
) from the Response which happened in the Page_PreInit
Event.
I tried it already with ((HtmlGenericControl)myAnchor)
but it doesn't work. It only works, if the anchor tag is inside the .aspx page.
Is there a possibility to reinitialize the .aspx
page after the response.write
event happened, so that the anchor tag from the sample.htm
file gets indexed like it would be an anchor tag from the .aspx
page.
Thanks for your help.