server.transfer different apps

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Question

I need to do a Server.Transfer on the same server same IIS site but from one
different web app to
another

it would not allow me to do that
I have 1.1

1. Is there a way to do it without redirect?
2. maybe 2.0 or later?
 
Question

I need to do a Server.Transfer on the same server same IIS site but from one
different web app to
another

it would not allow me to do that
I have 1.1

1. Is there a way to do it without redirect?
2. maybe 2.0 or later?

You can't do a Server.Transfer to a different application. You simply
can't return a response from a different application than it was
requested from.

Use Response.Redirect instead.
 
Back
Top