How can I get the parent page from a User Control in an ASP.NET Website (not Web Application)
asp.net, c#, user-controls, webforms
Solution
this.Page
or from just about anywhere:
Page page = HttpContext.Current.Handler as Page
Problem
Just as the subject asks. EDIT 1 Maybe it's possible sometime while the request is being processed to store a reference to the parent page in the user control?