Getting error after conversion to 2005
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Getting error after conversion to .net 2005 in the following line of code: <%=ClassName.StaticClassMember%> The code is written in an .aspx file. Subhasis
-
Getting error after conversion to .net 2005 in the following line of code: <%=ClassName.StaticClassMember%> The code is written in an .aspx file. Subhasis
Your aspx page is not part of a larger namespace. You'll probably find that ClassName has been moved to the appcode directory and you'll need to use the fully qualified name of the class (i.e. include namespace) to refer to it.