redirect a request

  • Thread starter Thread starter plt
  • Start date Start date
P

plt

Hi guy's just a quick question

I have to redirect a request....ex.

A------>B------>C and the other way A------>B------>C

meaning that B have to control the communication between A and C.

(C is a secure server, that is only accepting request from B)

A normal Response.Redirect("xxxx.htm") does work here...

How do i do that in Vb.net

Please help me :-)

Regards

Peter
 
Hi Peter,

You mean someting
Very very rough written

in A
Session("redirect")="C"
response.redirect("B.html")
in B
if Session("redirect")="C" then response.redirect("C.Html")

Just a thougth it could be?

Cor
 
Back
Top