i want to hide the querystring arguments which have a natural tendency of getting displayed in the addressbar....even if POST method is used how can i
Did you edit your original post? I must've had some example to post the reply above... Anyway, to answer your orgiginal question, you will not see form parameters in the URL line if you use the POST method to submit the form. If you do see them , this means that a) you use JS to submit the form and manually create the URL or b) your browser ignores the method attribute of the form (none of the standard browsers would do this). Check your server logs and make sure that the request is logged as POST. J.D.