Hello Everyone
I am currently trying to create a base page, following the second "Try it out" exersice.
I have followed all the steps but I seem to have made a mistake. I replaced all the System.Web.UI.Page to BasePage using the Find and Replace utility, and saved all the changes. When I launch the browser page I get the following error.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0246: The type or namespace name 'BasePage' could not be found (are you missing a using directive or an assembly reference?)
Source Error:
Line 6: using System.Web.UI.WebControls;
Line 7:
Line 8: public partial class _Default : BasePage
Line 9: {
Line 10: protected void Page_Load(object sender, EventArgs e)
Source File: c:\BegASPNET\Site\Default.aspx.cs Line: 8
I'm confused as to what I have done wrong and have completely no idea how to fix this. I feel that I am a little out of my leauge. I would be greatful for any advice.
