问题描述
System.GC.Collect();System.Net.ServicePointManager.DefaultConnectionLimit=512;HttpWebRequestrequest=(HttpWebRequest)HttpWebRequest.Create("http://"+url);request.Method="HEAD";HttpWebResponseresponse=(HttpWebResponse)request.GetResponse();stringchallenge=null;challenge=response.GetResponseHeader("Date");DateTimedt1=GMT2Local(challenge);stringdt2=dt1.ToLongTimeString();label2.Text=dt2;if(response!=null){response.Close();request.Abort();}
点两下时间还是不会变,要隔久点才行,咋回事
解决方案
解决方案二:
head部的时间貌似是秒变动的。还有你为什么要用request.Method="HEAD";,这种方式很少使用,你接受请求的服务端支不支持还不一定
时间: 2024-09-23 14:24:42