Okay I have the following error on my Home.aspx with the following codeError:\[code\]Compiler Error Message: ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl).Source Error:Line 5: using System.Web.UI.WebControls;Line 6: Line 7: public partial class home : _BasePageLine 8: {Line 9: protected void Page_Load(object sender, EventArgs e)Source File: h:\Sites\BaseSite\Home.aspx.cs Line: 7 \[/code\]Code:\[code\]public partial class home : _BasePage{ protected void Page_Load(object sender, EventArgs e) { }}\[/code\]Now I understand this is due to it should be inheriting : System.Web.UI.PageHowever this is my _Basepage class:\[code\]using System;using System.Text;using System.Web.UI;using System.Web.UI.HtmlControls;public class _BasePage : System.Web.UI.Page { /// code }\[/code\]This concept works fine in VB however what am I doing wrong here?