views:

34

answers:

1

I have a web-application (ASP.NET) and want to open another external webpage on another machine. I have to forward some information (variables) to that webpage, but they should not be part of the URL. So my question is, how can I achieve this without querystrings?

+3  A: 

Session variable will only work on the same backend web server. Your options are writing to a cookie or an HTTP POST.

Lee Armstrong
Warning: Cookies will only work if the other machine is in the same domain.
axel_c