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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!