Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Information Modeling And Relational Databases

Authors: Terry Halpin, Tony Morgan

2nd Edition

0123735688, 978-0123735683

More Books

Students also viewed these Databases questions

Question

assess the infl uence of national culture on the workplace

Answered: 1 week ago