You must Sign In to post a response.
  • Category: ASP.NET

    Asp.net application with 3 tier architecture and stored procedures

    1. in presentation layer i am getting errors in

    public ClsBusinesslayer objLogic=new ClsBusinesslayer();

    error: Type or namespace clsBusinesslayer could not be found

    2.using Businesslayer

    Error:Type or namespace Businesslayer could not be found

    In Business layer i am getting errors in

    3. public ClsDataLayer objDataLayer=new ClsDataLayer();

    error:Type or namespace ClsDataLayer could not be found
  • #768154
    Hi,

    Will able to post the complete code In this forum.

    It looks like you have not referenced the dll of other layers. Kindly reference the layer into other projects like Business Layer and Data Layer then use the reference in the coding and then start using those functions.

    Thanks,
    Mani

  • #768155
    hi ravikrishna ,
    i thing you need to install Entity FrameWork Plug-in your Application.
    then add Namespace DataAnnotations and Entity
    Must Refer this link:
    http://www.codeproject.com/Articles/986730/Learn-MVC-Project-in-days-Day
    hope it will help you

    Prayer through, Impossible becomes HimPossible
    Paul.S

  • #768160

    Hi,

    If you didnt refer those related UI, BLL, DAL namespaces in respective places, you will be getting this. use 'using respectivenamespace' whereever required.
    If you dont give respective namespaces correctly you will be getting compilation errors? are you getting?
    Refer the below simple login ex: with 3 tier architecture

    UI:
    Login Page
    using businessLogic;
    public partial class login : System.Web.UI.Page
    {
    businessLogic obj = new businessLogic();

    protected void button_Click(object sender, EventArgs e)
    {
    obj.Username = username.Text;
    obj.Password = password.Text;
    obj.loginbll();
    Response.Redirect("HOme.aspx");
    }
    }

    BLL:

    using databaselogic;
    public class businessLogic
    {

    public businessLogic ()
    {
    databaselogic obj_Bl = new databaselogic();

    }
    public string _username, _password;

    public string Username
    {
    get { return _username; }
    set { _username = value; }
    }

    public string Password
    {
    get { return _password; }
    set { _password = value; }
    }

    public void loginbll()
    {

    obj_Bl.login(Username,Password);

    }


    DAL:

    namespace databaselogic
    {

    public class databaselogic
    {
    public databaselogic()
    {
    }
    public void login(string username, string password)
    {
    //code related to Queries goes on here
    }
    }
    }


    Regards,
    SonyShiva
    Never lose hope..You never know what tomorrow will bring

  • #768166
    i am using namespaces still i am getting it sony

  • #768167
    what is the access modifiers for the namespace is it public or private ? use public access modifiers additionally are you using DLL or class files in same project, if you are using a class library (DLLS) then check if you are refer specific dll or not ?
    Thanks
    Koolprasd2003
    Editor, DotNetSpider MVM
    Microsoft MVP 2014 [ASP.NET/IIS]

  • #768181
    Hi,

    As prasad mentioned make sure of access modifiers,
    And for example if businessLogic dll you want to refer in login page means, In you project -> References -> Right click -> Add Reference (of the particular dll(in my example businessLogic dll) which you want to use in your code.
    And if possible please share the code so that all will get chance to find out where is the issue.

    Hope this will help you.

    Regards,
    SonyShiva
    Never lose hope..You never know what tomorrow will bring


  • Sign In to post your comments