Is it possible to modify/write data to an XML file without any server-side proxy(e.g. a php or asp script)? Can this be done via javascript? XSLT?
|
|
You can load and modify xml in browser, but writing the file back is a different thing. I don't know of any feasible way of writing data back to a server without some kind of server side mechanism to write the data to disk. |
||
|
|
|
|
Using the XMLHTTPRequest object you can modify an XML document using XSLT. Here's a sample article for getting started. |
||
|
|
|
|
Yes it is possible. You can do it with pure javascript or using a library like jquery |
||||||
|
