J
Justin Beckwith
Hey all, to keep some common functionality together, I am making all
of my web forms inherit from one base class, which inherits from
System.Web.UI.Page, instead of all my webforms inheriting
System.Web.UI.Page. To inherit the base class, my page load method
should NOT handle the base class event, since the method I am
overloading in the base class handles the page load event. So I
deleted the event handler, and all was working well. However, when I
close and re-open the web form in Visual Studio, it appends the
"Handles MyBase.Load" clause to the end of my Page_Load method. Has
anyone ever run into this before?
of my web forms inherit from one base class, which inherits from
System.Web.UI.Page, instead of all my webforms inheriting
System.Web.UI.Page. To inherit the base class, my page load method
should NOT handle the base class event, since the method I am
overloading in the base class handles the page load event. So I
deleted the event handler, and all was working well. However, when I
close and re-open the web form in Visual Studio, it appends the
"Handles MyBase.Load" clause to the end of my Page_Load method. Has
anyone ever run into this before?