I am working on ASP.Net shopping card application in which I have a product detail page where an input type="text" is for the quantity and when the user clicks on the Add to Cart button the product will be add to cart.
<input type="text" id="quantity" value="">
<a href="/Cart.html?Id=@Id&Quantity=?">Add to Cart </a>
When the user enters the value in the textbox, the querystring of cart link should be updated.
