I have a product catalog with dynamic pages for the product detail pages in ASP. As well as the product ID there may or not be other parameters passed on; for instance, I could have a URL called mysite.com/product.asp?productId=1 and another link to the same product could be mysite.com/product.asp?productId=1&category=124&keyword=shoes.
I want to avoid content duplication so I am planning in adding a canonical tag dynamically generated, in the example above it would be
<link rel="canonical" href="http://www.mysite.com/product.asp?productId=1">
Is this the correct way to do it. I don't want Google to stop listing all products or only list the first one it has found because there is a canonical tag on the physical page product.asp.
