Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
please help me i donot know how to solv this problem


Server Error in '/SaveImagesinFolderDisplayInGridview' Application.
Incorrect syntax near '14'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Incorrect syntax near '14'.

Source Error:


Line 24: con.Open();
Line 25: SqlCommand cmd = new SqlCommand("delete from ImagesPath where ID'" + t1.Text + "'", con);
Line 26: cmd.ExecuteNonQuery();
Line 27: //GridView1();
Line 28: con.Close();


Source File: e:\visual work\SaveImagesinFolderDisplayInGridview\SaveImagesinFolderDisplayInGridview\Default2.aspx.cs Line: 26
Posted

1 solution

Whatever was in t1.Text was causing an issue. You need to use a parameterized query anyway so that you are not open to SQL injection.
 
Share this answer
 
Comments
[no name] 29-Mar-13 18:16pm    
If you add that he is missing an = sign after ID then I will give you the vote.... Not to mention the "Cannot convert varchar to int" error that he is going to get for trying to use a string on what is sure to be a int field.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900