Forum Moderators: open
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'ClickableCommunity.ClickableCommunity'.
Source Error:
Line 1: <%@ Master Language="VB" AutoEventWireup="false" CodeBehind="ClickableCommunity.master.vb"
Line 2: Inherits="ClickableCommunity.ClickableCommunity" %>
Line 3:
This is what the start of the vb file looks like
Imports System.Data
Imports System.Data.Sql
Imports System.Data.SqlClient
Partial Public Class ClickableCommunity
Inherits System.Web.UI.MasterPage
Why will my master page never see that? Thanks,
Server Error in '/' Application.
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: 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 1: Public Partial Class test1
Line 2: Inherits System.Web.UI.Page
Line 3:
and here is my vb code behind :note I changed to a test masterpage
Imports System.Data
Imports System.Data.Sql
Imports System.Data.SqlClient
Partial Public Class test
Inherits System.Web.UI.MasterPage
Any Ideas?