我想知道如何使用c#...?
获取网页的上次修改日期我尝试了下面的代码,但我只得到了今天的日期
HttpWebRequest req =(HttpWebRequest)WebRequest.Create("http://www.codeproject.com/KB/cs/youmanager.aspx");
HttpWebResponse res =(HttpWebResponse) req.GetResponse();
DateTime abcd = res.LastModified;
提前致谢。