.NET如何将Web请求发送到同一域中的特定IP地址

时间:2013-06-04 13:03:05

标签: asp.net .net httpwebrequest webrequest

我有问题。每当我将WebRequest发送到https://myaddress.com时,它都会解析为错误的IP地址(此域有多个IP地址)。 如何指定我想将WebRequest发送到的IP地址?

感谢。

2 个答案:

答案 0 :(得分:0)

你不能直接使用IP吗?例如:

http://123.345.567.789/

WebRequest request = WebRequest.Create("http://123.345.567.789/");

答案 1 :(得分:0)

另一种方法是您可以编辑hosts文件以避免DNS查找:http://www.makeuseof.com/tag/6-surprising-uses-for-the-windows-hosts-file/