Hiding Address bar through Resounse.redirect or Server.transfer

  • Thread starter Thread starter thomson
  • Start date Start date
T

thomson

Hi all,
In Javascript we have the option of not showing the title
bar, address bar through the window.open function, Is there any option
in Server.transfer or Response.redirect to hide the address bar and
tool bar


Thanks in Advance

Regards

Thomson
 
Afraid not. These are set when the window is created, which means that you
can't set them unless you are spawning a new window. Neither Server.Transfer
nor Response.Redirect creates a new window. Only JavaScript can create a new
window and set those properties as well.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
Back
Top