I am creating a web application using ASP.net C#. I have a booking form and I need to insert data into a table using a Stored Procedure. The table has several columns, out of wh
use sql parameter..
connection = ConfigurationManager.AppSettings["mycon"];
SqlParameter[] para = new SqlParameter[2]; para[0] = new SqlParameter("@stored procedure column name", string name); para[1] = new SqlParameter("@stored procedure column name", string name);