如何在 .ashx Web 处理程序文件中找到名为 ProcessRequest 的进程?

发布于 2024-12-31 23:33:32 字数 378 浏览 1 评论 0原文

我有一个 context.Request.QueryString 项在 .ashx 处理程序的 ProcessRequest 方法中返回错误的值。

代码如下:

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest

    Dim strOrderItems As String = Convert.ToString(context.Request.QueryString("OrderItems"))

End Sub

“OrderItems”返​​回的值之一是错误的。如何找出哪个进程调用了此方法来修复不正确的数据?

I have a context.Request.QueryString item that is returning the wrong value in the ProcessRequest method of a .ashx handler.

The code is like so:

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest

    Dim strOrderItems As String = Convert.ToString(context.Request.QueryString("OrderItems"))

End Sub

One of the values returned by "OrderItems" is wrong. How can I find out what process has called this method to fix the incorrect data?

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

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

发布评论

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

评论(1

在巴黎塔顶看东京樱花 2025-01-07 23:33:32

它由 ASP.NET 框架代码调用。您检查了 context.Request.Url.ToString() 的值吗?该 URL 更有可能不是您想象的那样。

It's called by asp.net framework code. Did you check the value of context.Request.Url.ToString()? It's more likely that the URL is not what you think it is.

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