By hiding do you mean to say that you dont want the address bar to be
visible to the user at all? or just for a particular page you dont want to
show the user the page you are redirecting to?
If its the latter case then you can transfer the user using
< Server.transfer("YourPageURL");>
This will keep the current web page url in the address bar and transfer to
the YourPageURL
e.g If the user is on ABC.aspx
and you transfer the user to XYZ.aspx using Server.Transfer then the address
bar will still contain ABC.aspx but will be executing XYZ.aspx
Is this what you want?
****************************
Hope this helps
Shaun, M.C.P