Hi everyone,
How to use session value during fetching values from database of that particular session value?
SqlDataAdapter adapterprice = new SqlDataAdapter("SELECT product.productid, product.productname, product.price, product.description FROM product where product.productid= Session["productid"] ", myconnection);
During writing code in such a way it is showing error..
Can any one help me in this..??