Ik heb een manier gezien om je favorieten van IE te exporteren naar een webpagina. Je kunt het via bestand >> exporteren doen, dan krijg je een bestandje. Deze zou je dan kunnen uploaden. Maar de versie die ik heb gezien kon het via een button in een html pagina.
Iemand enig idee hoe dit werkt.
Dit vond ik bij MSDN geen idee of het wat is:
This example uses the ImportExportFavorites method to import Favorites information from the server.
// 'true' specifies that the Favorites are imported from the server.
window.external.ImportExportFavorites(
true,"http://www.your_server.com");
This example uses the ImportExportFavorites method to export Favorites information from the server.
// 'false' specifies that the Favorites are exported to the server.
window.external.ImportExportFavorites(
false,"http://www.your_server.com");
This example uses the ImportExportFavorites method to open a file dialog box.
// If the path given is an empty string, a dialog box is opened.
window.external.ImportExportFavorites(false, "");
Iemand enig idee hoe dit werkt.
Dit vond ik bij MSDN geen idee of het wat is:
This example uses the ImportExportFavorites method to import Favorites information from the server.
// 'true' specifies that the Favorites are imported from the server.
window.external.ImportExportFavorites(
true,"http://www.your_server.com");
This example uses the ImportExportFavorites method to export Favorites information from the server.
// 'false' specifies that the Favorites are exported to the server.
window.external.ImportExportFavorites(
false,"http://www.your_server.com");
This example uses the ImportExportFavorites method to open a file dialog box.
// If the path given is an empty string, a dialog box is opened.
window.external.ImportExportFavorites(false, "");