I have a a class called CUser. I'm tyring to call a function in this class in another aspx page I have. This is how Im calling it:
CUser Logic = new CUser();
DataList1.DataSource = Logic.GetAllDate();
DataList1.DataBind();
Im getting the following error The type or name space name 'CUser' couldnt be found. My CUser class is in appcode in a folder named BLL. Am i missing something?
Thanks,
CUserclass, it should be visible immediately to your ASPX page. Otherwise use theusingdirective.