I posted this in the general programming forum since you guys may best understand what I am looking for. Have you ever done a search on a website and found no query string link displayed in the browser? Instead of "http://www.google.com/search?hl=en&q=query+string&btnG=Google+Search" you would only get something like this: "http://www.google.com" I have seen this with many asp sites. Anyway, I have recently found some sort of shareware application executible that would monitor your clicks on the search buttons and display the query string to you. My problem is that I have misplaced it. I really need something like this if anyone knows of such a tool.
Only with the GET method you will see the query string in the address bar. If submitted data transferred with POST method, url will not be changed. See HTTP - Request methods for more details.