I got this code in VB. and it doesn't do anything.Can anyone help me under stand why and give me a solution?
Dim updatestr As String = "<Method ID='1' Cmd='Update'>" + _
"<Field Name='Title'>Ficha_router</Field>" + _
"<Field Name='ID_Cliente'>0000</Field>" + _
"</Method>"
Dim xmlDoc = New System.Xml.XmlDocument()
Dim elBatch As System.Xml.XmlElement = xmlDoc.CreateElement("Batch")
elBatch.SetAttribute("OnError", "Continue")
elBatch.SetAttribute("ListVersion", "1")
elBatch.SetAttribute("ViewName", "")
elBatch.InnerXml = updatestr
listService.UpdateListItems("Flecha", elBatch)