Hi,
I have a webapp where my users might want to get some data from me in xml format. The flow I was thinking of:
- User clicks a button named "export"
- I generate a long xml string using javascript.
- Pop up a new window and just paste the xml string into it.
I would prefer saving the xml string into a text file for the user, but I don't think this is possible with javascript (security reasons).
Are there any other best practices for doing something like this? I guess this will work fine,
Thanks