ShooterJ07
New member
- Joined
- Jul 5, 2007
- Messages
- 4
- Programming Experience
- 1-3
This may be a simple issue...
Long story short, I have a .aspx page. It runs fine when I click Debug in Visual Studio.
However, when I publish the site, and navigate to it from a browser, I get .NET error that says "The Resource Cannot Be Found".
I have taken everything out of my page except one line, thus narrowing down the problem.
The line is:
Below this, I have nothing except html & body tags with a single line of text, so I KNOW the error is spawning from this inherits= statement.
In my project, I have a Reference to ExampleProj.Test, which is placed in my Bin folder.
Does anyone have any idea why in the world this page will not run when it is published, but it runs just fine when debugging?
Is there something I should be including in my global.asax.vb file or my web.config file perhaps?
note: i replaced the actual names with example & test just for the sake of this post.
Thanks guys...
Long story short, I have a .aspx page. It runs fine when I click Debug in Visual Studio.
However, when I publish the site, and navigate to it from a browser, I get .NET error that says "The Resource Cannot Be Found".
I have taken everything out of my page except one line, thus narrowing down the problem.
The line is:
VB.NET:
<%@ Page language="VB" AutoEventWireup="false" Inherits="ExampleProj.Test.UI.TestPageBase"%>
Below this, I have nothing except html & body tags with a single line of text, so I KNOW the error is spawning from this inherits= statement.
In my project, I have a Reference to ExampleProj.Test, which is placed in my Bin folder.
Does anyone have any idea why in the world this page will not run when it is published, but it runs just fine when debugging?
Is there something I should be including in my global.asax.vb file or my web.config file perhaps?
note: i replaced the actual names with example & test just for the sake of this post.
Thanks guys...