我正在使用此代码从URL
获取返回字符串webClient.Encoding = Encoding.UTF8;
response = webClient.DownloadString("http://somesite.com/code.php");
Console.Write(response);
code.php
看起来像这样
<?php
$data = file_get_contents('code.txt');
echo $data;
?>
问题是当我更改code.txt
文件的内容时,webClient.DownloadString()
方法返回code.txt
文件的旧内容。当我在浏览器中打开URL http://somesite.com/code.php
时,它可以正常工作。
任何解决方案将不胜感激!
我的问题似乎有些重复,但我并不完全理解这里所说的内容:C# WebClient disable cache
如果有人能够解释并提供一些示例代码,那就太棒了!
答案 0 :(得分:4)
尝试在WebClient上禁用缓存
webClient.CachePolicy = new System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore);