M
Mariano
Greetings,
I'm developing a web site in asp.net 2.0. I have class files in App_Code
and they are used in aspx. Example:
* App_Code ( i have users.cs containing users class, data.cs is DAL)
* index.aspx
Example in index.aspx
private void read() {
users u = new users();
....
}
The trouble is in this point is reported in the production server:
Server Error in '/' Application
Compiler Error Message: CS0246: The type or namespace name 'users' could not
be found (are you missing a using directive or an assembly reference?)
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET
Version:2.0.50727.42
I deployed copying all files and directories to the production server
without pre compilation.
In local mode the web site run great, but no in the production server.
HELP ME, PLEASE
thanks in advance
I'm developing a web site in asp.net 2.0. I have class files in App_Code
and they are used in aspx. Example:
* App_Code ( i have users.cs containing users class, data.cs is DAL)
* index.aspx
Example in index.aspx
private void read() {
users u = new users();
....
}
The trouble is in this point is reported in the production server:
Server Error in '/' Application
Compiler Error Message: CS0246: The type or namespace name 'users' could not
be found (are you missing a using directive or an assembly reference?)
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET
Version:2.0.50727.42
I deployed copying all files and directories to the production server
without pre compilation.
In local mode the web site run great, but no in the production server.
HELP ME, PLEASE
thanks in advance