gsc123
Programmer
- Jan 24, 2008
- 197
I get an error on these catchers but the query is valid?
mySQL="UPDATE products SET products.Price = "&Session("pPrice")&" WHERE (((products.idproduct)="&Session("pIdProduct")&"))"
conntemp.execute(mySQL)
if err.number <> 0 then
response.redirect "pt_supporterror.asp?error="& Server.Urlencode("Error in viewitem: "&err.description)
end if
UPDATE products SET products.Price = 310 WHERE (((products.idproduct)=1562))
mySQL="UPDATE products SET products.Price = "&Session("pPrice")&" WHERE (((products.idproduct)="&Session("pIdProduct")&"))"
conntemp.execute(mySQL)
if err.number <> 0 then
response.redirect "pt_supporterror.asp?error="& Server.Urlencode("Error in viewitem: "&err.description)
end if
UPDATE products SET products.Price = 310 WHERE (((products.idproduct)=1562))