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;
...
}
Ths bug is on
BIZ.Blog o;
Could anyone tell me what's the problem?
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;
...
}
Ths bug is on
BIZ.Blog o;
Could anyone tell me what's the problem?