0
Thanks for that - works well.
0
Yes, you have. But the Page property of user controls is declared as System.Web.UI.Page (of course, how could it know the name of your base class). All you need to do is cast it to appropriatetype.
Just use following code on your control
RVPage myPage = Page as RVPage;
if (myPage != null)
{
// myPage.Entity is available here
}