将变量移交给没有查询字符串的网站
我有一个网络应用程序 (ASP.NET),想要在另一台计算机上打开另一个外部网页。我必须转发一些信息(变量)到该网页,但它们不应该是 URL 的一部分。所以我的问题是,如果没有查询字符串,我怎样才能实现这一目标?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会话变量只能在同一个后端 Web 服务器上工作。您的选择是写入 cookie 或 HTTP POST。
Session variable will only work on the same backend web server. Your options are writing to a cookie or an HTTP POST.