OK,
I have a solution named "Quiz", residing in a folder called "Quiz". In my aspx pages, the Inherits directive reads "Inherits=Quiz", and my codebehind page contains the "Quiz" class. When I make changes to the codebehind page, the IDE changes the line to read "Inherits=Quiz.Quiz", and that causes a parser error! Every time I change my codebehind page, I have to remove the first "Quiz" reference from the Inherits line for my code to run. Why is this happening??
-----------
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Quiz.aspx.vb" Inherits="Quiz" Src="Quiz.aspx.vb"%>
-----------
Thanks!
Paul
I have a solution named "Quiz", residing in a folder called "Quiz". In my aspx pages, the Inherits directive reads "Inherits=Quiz", and my codebehind page contains the "Quiz" class. When I make changes to the codebehind page, the IDE changes the line to read "Inherits=Quiz.Quiz", and that causes a parser error! Every time I change my codebehind page, I have to remove the first "Quiz" reference from the Inherits line for my code to run. Why is this happening??
-----------
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Quiz.aspx.vb" Inherits="Quiz" Src="Quiz.aspx.vb"%>
-----------
Thanks!
Paul