Problem
When opening very large XML files locally, on your machine, it is almost certain that it will take an age to open this file - this can often mean that your computer is locked because it thinks it is not responding.
This is a problem if you serve users with XML backups of rather complex databases or systems that they use - the similarity with them, which can open large backups, not to mention their use, is subtle.
Is pagination possible?
I use XSLT to present readable backups to users. In the same way, only a page could be pulled out during the data to prevent the entire file from being read at a time, thereby causing problems above.
I assume that the answer is simply no, but I would like to know if anyone saw other problems and resolved them.
Note It is only on the local machine, it does not require an Internet connection. JavaScript can be used if this makes things easier.
xml xslt local offline
jakeisonline
source share