XML Save Error

webmasterbeta

New Member
Perhaps a simple question, but one I have been unable to find an answer to.Have an ASP page with controls bound to an XML doc. Rather than postingthe page we want to save the XML back to an ASP page something like:var PostObject = new ActiveXObject("Microsoft.XMLHTTP");PostObject.Open("POST", "Config.asp?Action=Save", false);PostObject.send(ConfigData.XMLDocument);The data will then be saved back into the database, assuming no errors areencountered. The question is: if an error IS encountered how would the errorinformation be sent back to client? Is there something that can be inspectedfollowing the send to ensure that the data was processed successfully?TIA, Larry
 
Back
Top