...\<Base>

This sub-folder contains the source code and the Visual Studio .NET development files for the application base classes.  These classes are provided to you in source code format so you have 100% of the source code needed for your application.  You can modify the source code, create a new version of the compiled library and move the resulting .DLL (and .PDB) to the Bin folder of the application.  This enables you to have different applications running different versions of the base classes.

Note:  If you modify the base classes for your application, then you will need to merge the updates to the base classes in future versions.

The base class file system structure mirrors the base class namespaces.  That is, files in the BaseClasses namespace are in:

...\BaseClasses\Base

Files in the BaseClasses.Web.UI namespace are in:

...\BaseClasses\Web\UI

 

File

Function

AssemblyInfo.vb

This project information file (AssemblyInfo.vb or AssemblyInfo.cs file) contains metadata about the assemblies in a project, such as name, version, and culture information. 

Global.asax.cs
Global.asax.vb

The C# or Visual Basic code-behind for Global.asax.  This code-behind object inherits from System.Web.HttpApplication class.  These classes and code-behinds are created for your convenience when extending the application with your own code.

BaseClasses.sln

Contains the Visual Studio .NET solution file used to build the DLL for application base classes.  The solution file also uses files with the extensions of .vbproj, .vbproj.user, .vbproj.vspscc and .vsdisco.

See Also

...\<Base>\Bin

...\<Base>\Configuration

...\<Base>\Data

...\<Base>\Data\Columns

...\<Base>\Data\DataReader

...\<Base>\Data\SQLProvider

...\<Base>\Utils