Procedure

Procedure or Function expects parameter, which was not supplied : Resolved

I created a stored procedure as follows: Create procedure spInsertTable1  @Name varchar(50),  @Phone Varchar(50)  As  Begin   Insert into Table1(Name,Phone) values (@Name,@Phone)  End Now I wanted to insert the values from front end using this stored procedure. To achieving this thing I wrote the below mentioned code. protected void btnSubmit_Click(object sender, EventArgs e)         {             Procedure or Function expects parameter, which was not supplied : Resolved