Hi,
Is it posible to fetch all html content in page PreRender event?
code:
protected virtual void Page_PreRender(object sender, EventArgs e)
{
getHtmlData(this.Page)
} private static string getHtmlData(Control ctrl)
{
foreach (Control child in ctrl.Controls)
{
// code to fetch all html content
} }
Sagar Pandurang KapPosted Feb 27, 2018, 5:04 AM