如何使用驻留在自己服务器上的WebClient下载html?
如何使 WebClient 连接并从其页面下载 htm。我知道这很令人困惑,所以让我重申一下:
我已经使用 WebClient 编写了代码来下载 http:// /www.someserver.com/Invoice.aspx。 Webclient 代码驻留在 Invoice.aspx 页面中,因此给我一个类似这样的错误:“连接尝试失败,因为连接方在一段时间后没有正确响应”。我不知道如何解决它,以便我可以从页面本身下载 htm 页面。
我将永远亏欠
How do I make WebClient connect and download htm from its page. I know this is very confusing so let me retierate:
I have written code using WebClient to download htm string of http://www.someserver.com/Invoice.aspx. The Webclient code resides in the Invoice.aspx page and hence is giving me an error like this "A connection attempt failed because the connected party did not properly respond after a period of time". I am not sure how to get the way around it so that I can download the htm page from the page itself.
I will be indebted forever
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能在 WebClient 方法调用中使用查询字符串参数吗?然后,您可以检查查询字符串参数,如果它不存在,则仅渲染页面并忽略 WebClient 调用。
Can you not use a querystring parameter in your WebClient method call? Then you could check for the querystring parameter and if it does not exist then just render the page and ignore the WebClient call.