Question
we wrote this code behind for home page for our project at asp.net #C for(int i=0;i
we wrote this code behind for home page for our project at asp.net #C
for(int i=0;i<=grdview1.Rows.Count-1;i++) { cmd.Parameters.AddWithValue("@oid", oid); cmd.Parameters.AddWithValue("@pid", grdview1.Rows[i].Cells[2].Text); cmd.Parameters.AddWithValue("@uid", Session["uid"]); cmd.ExecuteNonQuery(); cmd.Parameters.Clear();
}
SqlCommand cmdCart = new SqlCommand("Delete from cart where uid=" + Session["uid"], con); cmdCart.ExecuteNonQuery(); con.Close(); Response.Write("");
-----
and we are facing 2 errors (command argument and command name):
1:
Error CS1061 'EventArgs' does not contain a definition for 'CommandName' and no accessible extension method 'CommandName' accepting a first argument of type 'EventArgs' could be found (are you missing a using directive or an assembly reference?)
2:
Error CS1061 'EventArgs' does not contain a definition for 'CommandArgument' and no accessible extension method 'CommandArgument' accepting a first argument of type 'EventArgs' could be found (are you missing a using directive or an assembly reference?)
If any one can help us on what to do I'll be very thankful
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started