When you have a
public class BasePage extends Page
and then another
public class SubPage extends BasePage
you don't actually get them as separate pieces. This method of class (and markup) extending only exists to make the process more "object" and "java" like. In the end, the entire page hierarchy is combined together to a single, rendered page.
Now, if you want one sub-part of the page to refresh, I suggest creating a Panel and adding an AjaxSelfUpdatingTimerBehavior to that component. This will let you auto refresh any part (or multiple parts) of a page without the entire thing re-rendering.