Actually, I wanted to display query string while debugging an error. In ASP, if I put Response.Write before the line having error, it displayed it on browser. But in ASP.Net, if error occurs, it displays nothing but the error message.

So, I want to get the query string displayed, may be using Response.Write or through some message box.

How can I do that?

Thanks