在 IIS7 过滤器中解析客户端请求

发布于 2024-12-18 06:50:08 字数 40 浏览 5 评论 0原文

在请求级 IIS7 http 模块中访问表单值的最实用方法是什么?

what is the most practical way to access form values within a request-level IIS7 http module?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟雨扶苏 2024-12-25 06:50:08

来自 HttpContext.Request 对象。例如:

HttpRequest request = HttpContext.Current.Request;
String myFormValue = request.Form["myFormName"];

From the HttpContext.Request object. For example:

HttpRequest request = HttpContext.Current.Request;
String myFormValue = request.Form["myFormName"];
眉黛浅 2024-12-25 06:50:08

看起来最实用的方法是拦截 onbeginrequest 并手动解析所有输入(如果输入标记为 urlencoded 或多部分)。

it looks like the most practical way is to intercept onbeginrequest and parse all the input manually if the input is either marked as urlencoded or multipart.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文