Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/06/2005, 13:01
Avatar de aristotelisco
aristotelisco
 
Fecha de Ingreso: marzo-2005
Ubicación: Oxnard CA USA
Mensajes: 151
Antigüedad: 20 años
Puntos: 0
YO tengo esto, y funciona


Código:
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.Async=false
if objXML.Load(Server.MapPath("doGoogleSearch.xml")) then
		' Process the XML File
		objXML.getElementsByTagName("q").item(0).text = Request.Form("txtSearch")
		Response.Write(objXML.getElementsByTagName("q").item(0).text )
		objXML.save(Server.MapPath("doGoogleSearch.xml"))
end if
Abre un archivo, busca un elemento, "q" en este caso, lo actualiza, y salva el archivo.
__________________
Atte:
Alex Reyes

www.alexreyes.net