I'm just start to learn the .net
I brought the book Professional ASP.Net 1.1 and tried to install the code dl from this web site. However, it gots errors in setting up. So, I try to create a solution from vs 2003 and add the existing items from the dl code folders.
once completed, i tried to open the files and most of the page are including the following codes in the beginning of file.
<%@ Page Language="
VB" Inherits="IBuyAdventure.PageBase" src="components/stdpage.
vb" %>
<%@ Register TagPrefix="IBA" TagName="Header" Src="UserControl\Header.ascx" %>
<%@ Register TagPrefix="IBA" TagName="Categories" Src="UserControl\Categories.ascx" %>
<%@ Register TagPrefix="IBA" TagName="Special" Src="UserControl\Special.ascx" %>
<%@ Register TagPrefix="IBA" TagName="Footer" Src="UserControl\Footer.ascx" %>
<%@ OutputCache Duration="60" VaryByParam="*" %>
the vs2003 stated that it got errors in displaying the page correctly. I search the web and it seems that the codebehind method is different from that used in vs2003. So, how can i fixed this?
Besides, when i run the program, it display errors

as
*********************
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: BC30002: Type 'IBuyAdventure.CartDB' is not defined.
Source Error:
Line 25:
Line 26: If Context.User.Identity.Name <> "" Then
Line 27: Dim cart As New IBuyAdventure.CartDB(ConfigurationSettings.AppSett ings("connectionString"))
Line 28: cart.ResetShoppingCart(GetCustomerID())
Line 29: FormsAuthentication.SignOut()
**************
any tips on this as well?