Hi,
This code not working, IE cached my files how to fix this problem?
Thanks.
Code:
Private Function obj() As String
Dim html As IXMLHTTPRequest
Set html = CreateObject("Microsoft.XMLHTTP")
With html
.open "GET", <url>, False
.setRequestHeader "pragma", "no-cache"
.setRequestHeader "cache-control", "no-store, must-revalidate, private"
.send
End With
obj = html.responseText
Set html = Nothing
End Function
Thanks.