在 asp.net 网络表单中获取 post 方法负载
Get the post method payload in asp.net webforms
我需要在 asp.net 网络表单中获取 post 方法发送的负载。我有一个 login.aspx
页面被另一个站点调用为 post 方法,如下所示:
https://example.com/Login/Login.aspx
如何从负载中获取 SAMLResponse
的值?我已经尝试了以下两种方法:
Request["SAMLResponse"]
Request.Form["SAMLResponse"]
非常感谢任何帮助。
问题是当请求到达登录页面时 SAMLResponse 为空。通过在 global.asax 页面中使用 Request.Form["SAMLResponse"],我可以获得该值。谢谢
我需要在 asp.net 网络表单中获取 post 方法发送的负载。我有一个 login.aspx
页面被另一个站点调用为 post 方法,如下所示:
https://example.com/Login/Login.aspx
如何从负载中获取 SAMLResponse
的值?我已经尝试了以下两种方法:
Request["SAMLResponse"]
Request.Form["SAMLResponse"]
非常感谢任何帮助。
问题是当请求到达登录页面时 SAMLResponse 为空。通过在 global.asax 页面中使用 Request.Form["SAMLResponse"],我可以获得该值。谢谢