namespaces in web site
-
Hello everyone, I developed a web site with asp.net 2005 (c#). I put in app_code three directories that conatin my classes: BIZ: contains bizuness classes DAL: data access layer MODEL: contains models of my database's table When I run the project locally on my computer everything is allright. But I published the site, I get this error: CS0246: The type or namespace name 'BIZ' could not be found (are you missing a using directive or an assembly reference?) This error is in a function like follow:
private void DisplayBlogLaUne(){ BIZ.Blog o; o = new BIZ.Blog(); Model.InfoBlog info; ... }
This site bugs onBIZ.Blog o;
Could anyone tell me what's the problem?Just Relax And Keep It Simple.
-
Hello everyone, I developed a web site with asp.net 2005 (c#). I put in app_code three directories that conatin my classes: BIZ: contains bizuness classes DAL: data access layer MODEL: contains models of my database's table When I run the project locally on my computer everything is allright. But I published the site, I get this error: CS0246: The type or namespace name 'BIZ' could not be found (are you missing a using directive or an assembly reference?) This error is in a function like follow:
private void DisplayBlogLaUne(){ BIZ.Blog o; o = new BIZ.Blog(); Model.InfoBlog info; ... }
This site bugs onBIZ.Blog o;
Could anyone tell me what's the problem?Just Relax And Keep It Simple.
sounds like the dll is missing.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
sounds like the dll is missing.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
hello Christian, I don't have any DLL in my website. I don't need any and I don't use any! The BIZ.Blog is falling and BIZ is the directory who is the namespace of Blog class. thanks.
Just Relax And Keep It Simple.