Hi

I have designed an application in which my pages are scattered to different machine.
I have to pass a value from one page on one machine to other machine on other machine.

I have used this:

Page1_load
Session("Name")="Abbas Haider"
Response.Redirect("Page2.aspx")
End Sub

Page2_Load
Response.Redirect(Session("Name"))
End Sub

Now Session("Name") is empty for other page

How can I pass my values?

Thanks in Advance