<div class="post-text" itemprop="text">
i have huge number of aspx pages. i want to fire a common function from all aspx page page load event but for that i need to add the function call in all page load event of all aspx page. so i am looking for a easy trick bu which i can make possible a function
call from all page load event of all aspx page in my site.
so is it possible to hook page load event from out side or can we create a base page which will attached with all aspx page dynamically.
but i do not mean by base page like
public partial class MyBase: System.Web.UI.Page
{
}
public partial class index : MyBase
{
}
the above way i do not want to solve the problem bacuse if i follow the above way then i have to edit all aspx pages in my site. i need any easy trick to hook page load event.
please guide me.
</div>
Go to the complete details ...