wininet通过http方式如何得到web上指定文件的最后修改时间?

wininet通过http方式怎么得到web上指定文件的最后修改时间??
rt!

------解决方案--------------------
顶一下
------解决方案--------------------
用GET方法请求请求指定文件,在返回的HTTP包头中有“Last-Modified”属性
如:
GET /test.htm HTTP/1.1
Accept: */*
。。。

返回:
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Wed, 28 Mar 2007 09:19:57 GMT
X-Powered-By: ASP.NET
Content-Type: text/xml
Content-Length: 17574
ETag: "27045e58fd0357429a489c043b255cf2000000002ba3 "
Last-Modified: Wed, 07 Mar 2007 04:18:28 GMT    // <--
Accept-Ranges: bytes
MS-WebStorage: 6.0.6249
Cache-Control: no-cache
Expires: Wed, 28 Mar 2007 09:19:57 GMT

------解决方案--------------------
要注意的是,如果请求的是asp, jsp, php 等动态页面,那么Last-Modified 可能不会提供的。
通过动态页面输出流的方式提供文件下载,也不一定有。