I dynamically generate a menu in code - it generates items like this: <a href="Grid.aspx?ID=1234">Computers</a> Clicking on a menu item redirects the user to the Grid.aspx (using asp.net but could be any language) and passes in a parameter "1234" which is read by Grid.aspx to display a particular grid. Please could someone tell me if this a good idea for SEO, indexing etc? Not sure how to really ask the question but a programmer should know what I mean! Thanks for any help.
Search engines do index pages that have querystrings... but I would advise using anything but ID, I heard that Search Engines don't like the querystring variable name "ID" Name it something like gridID=....
Thanks ccoonen - question answered I'll change ID to something else. I have AdSense on different grids but the majority of the Ads are all the same except for the odd grid which have relevant ads! This is what prompted me to ask the question initially. Thanks again.