blueindian1
Programmer
hello,
i've written several classes under the namespace "theblueindian.uploadaccess" using this syntax:
my problem is that when i try to inherit from them in an aspx page using this syntax:
i get this error:
do i have to do anything special to make this work?
i've written several classes under the namespace "theblueindian.uploadaccess" using this syntax:
Code:
Namespace theblueindian.UploadAccess
Public Class FileForm : Inherits GenericPage
.
.
.
.
.
End Class
End Namespace
my problem is that when i try to inherit from them in an aspx page using this syntax:
Code:
<%@ Page language="c#" Codebehind="file.aspx.cs" AutoEventWireup="false"
Inherits="theblueindian.UploadAccess.FileForm" %>
i get this error:
Code:
Parser Error Message: Could not load type 'theblueindian.UploadAccess.DefaultForm'.
do i have to do anything special to make this work?