That's weird. The Faq page is the only page that accesses a class in App_Code directly from its Code Behind. The other pages all use ODS objects. However, that shouldn't make a difference.
Can you create a simple test file in App_Code and see if that works correctly. Something like this:
Public Class Test
Public Shared Function HelloWorld() As String
Return "Hello World"
End Function
End Class
Then try to access this class from a code behind file, for example in a Page_Load method, like this:
Response.Write (Test.HelloWorld())
Does that work?
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.