Response.Redirect

  • Thread starter Thread starter Big E
  • Start date Start date
B

Big E

I'm currently using a submit button. When users click submit it goes to the
VB code and does a Response.Redirect. The Response.Redirect is very slow.
What are the other options for moving between web forms.

Thank you,

Big E
 
Hi Big E

I dont understand why Response.Redirect is slow. Actually it fires very quickly. Even if you have a number of Response.Write and other stuff in your pages, regardless of anything, it is executed first

There is one more method called Server.Transfer for moving between web forms but that is not recommende
because, the client (browser) will not be aware of the transfer

Hope It Helps


----- Big E wrote: ----

I'm currently using a submit button. When users click submit it goes to th
VB code and does a Response.Redirect. The Response.Redirect is very slow
What are the other options for moving between web forms

Thank you

Big
 
Server.Transfer is your other option, but not preferred.

Chris
--------------------
 
Back
Top