Hi Babloo,
this has always worked for me:
Code:
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
BTW in your XPath, using // is a bad habit to get into because it can be a very expensive operation (not in XML as small as your example here, though). Its much better to use the full path if you know it, e.g. /P/T[@a='4']
rgds
Phil