why is this code in the click event not insterting into the database table "shoppingcart" ?


Dim sqlconn As New Data.SqlClient.SqlConnection()
Dim sqlcommand As New Data.SqlClient.SqlCommand()

sqlconn.ConnectionString = "Data Source=infodata.tamu.edu;Initial Catalog=drunyon;User ID=drunyon; password=816003257"
sqlconn.Open()
sqlcommand.Connection = sqlconn


sqlcommand.CommandText = "INSERT INTO shoppingcart([ProductNumber], [Image], [Name], [Description], [Price]) values (45, Images/NewYork, NYG, Hi, 100000)" '& identity

sqlcommand.ExecuteNonQuery()


How do I fix it?