Server.Transfer

  • Thread starter Thread starter Ali Nasir
  • Start date Start date
A

Ali Nasir

Using Server.Trasfer the control is shiftewd to the form specified in the
parameters of the Server.Transfer. however the URL still contains the
Address of the calling form and not the Loaded form. Can anyone justify
this.

Ali Nasir
 
hi ali,

thats by design. the server.transfer is done completly by the server. the
client is not even notifyed. using response.redirect the client will be
asked if it is ok to do the redirect, but also here you will look at the old
url. you have to use javascript or a http-meta refresh.

bye marco
 
Back
Top