4
Answers

How to call Stored Procedures Parameters in List

Dear All,
 
I want to call Stored Procedures Parameters in List instead of AddwithValue Method using SqlCommand Object.
 
For Example: Generally we call a parameter using SqlCommand  object
 
cmd.Parameters.AddwithValue("@Name",txtname.Text) ;
 
 
I want to call parameter in List then we insert the List value int Database.
 
Please Help me... 

Answers (4)