I'd go with something other than 'Page'. The 'Page' class that is built into .NET is a very generic class that is commonly known as part of ASP.NET. You could easily confuse other developers (or even yourself, a few months down the road if you don't look at it for a while).
I usually go with a naming convention such as:
ApplicationName + "PageBase"
Page"
I also like to follow the MS .NET naming guidelines of only capitalizing the first letter of an acronym longer than 2 characters. Since 'MVCMS' can be confused for the 'MVC' architecture style if read incorrectly, I wouldn't use 'MvcmsPageBaseMvcmsPage' or 'MVCmsPageBaseMVCmsPage', I'd call it something like this:
MvCmsPageBase
MvCmsPage
This is descriptive and fairly easy to read and understand.
Of course it's really up to you. Mainly it's a matter of preference. Just don't use 'Page' as it will make some developers angry (such as myself).
