C# HttpWebRequest 问题

发布于 2024-11-19 00:50:14 字数 609 浏览 0 评论 0原文

可能的重复:
HttpWebRequest 到末尾带有点的 URL

我面临着奇怪的问题。当我尝试使用 HttpWebRequest 获取页面时,页面未正常显示。该网址中有一个点,例如 http://www.xyz.com/abc。 /do 。您可以看到该网址中有一个点。因此,当我尝试使用 HttpWebRequest 获取该数据时,数据未正确到达。所以我用 fiddler 跟踪它,我看到这个类省略了像 http://www. xyz.com/abc/do 。我该如何解决这个问题?

注意。这不是真正的网址。但问题是真实存在的。

Possible Duplicate:
HttpWebRequest to URL with dot at the end

I am facing a weird problem. When I am trying to get a page using HttpWebRequest page is not coming properly. The url has a dot into it like http://www.xyz.com/abc./do . You can see this url has a dot into it. So when I am trying fetching that data using HttpWebRequest data is not coming properly. So I tracked it with fiddler and I saw this class omitting the dot like http://www.xyz.com/abc/do . How can I solve this problem ?

NB. This is not a real url. But the problem is real.

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

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

发布评论

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

评论(1

靑春怀旧 2024-11-26 00:50:14

可能是编码url解决问题

HttpUtility.UrlEncodeUnicode(url)

may be encoding url solve the problem

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