Ciau rag,
non capisco perche non riesco ad estrarre l'ultimo record inserito in ordine di data da un recordset XML.

Il pezzetto di codice è questo:

codice:
dim strError, strURL
strURL = "http://www.miosito.com/feedrss.asp"
dim xmlDom, nodeCol, oNode, oChildNode
set xmlDom = Server.CreateObject("MSXML2.Domdocument")
xmlDOM.async = False

call xmlDom.setProperty("ServerHTTPRequest", true)
xmlDom.async = false
call xmlDom.load(strURL)

if not xmlDom.documentElement is nothing then
  
  set nodeCol = xmlDom.documentElement.selectNodes("channel/item")
  ii = 1

for each objNode in nodeCol
    Response.Write("<div>" & vbCrLf)
invece di fare il loop con "for each obj in node" next come posso estrarre solo l'ultimo record inserito cronologicamente?