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

    Asp.net 3 tier architecture with stored procedures

    in data layer i am getting the error

    public void Insertdata (string _name,string _add,string _city,string _email)
    {
    UAdaspter.Insert(_name,_add,_city,_email);
    }

    Error:no overload for method Insert takes 4 arguments.
  • #768159
    Hi,

    The error clearly saying, There is no overload for method insert with 4 arguments.
    Did you give method definition of insert with 4 arguments which is of string type?
    public void insert(string _name, string _add,string _city,string _email)
    {
    //your code to insert
    }

    My suggestion is debug your code, where exactly it is giving error, so you will come to know if there is no method? or If method is there any issue with parameters or return type, etc

    Hope this will help you

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

  • #768165
    thank u sony it is because of not writing stored procedure

  • #768168
    The error description 'no overload for method Insert takes 4 arguments' is clear, It just says, you have pass four parameters to method but your have pass less than 4 argument to method
    Please go though your code and check where you have call your method

    Thanks
    Koolprasd2003
    Editor, DotNetSpider MVM
    Microsoft MVP 2014 [ASP.NET/IIS]


  • Sign In to post your comments