-
Bookmarks from IE.
I want to show my Bookmarks on an ASP.NET page so I guess I need to import them when page loads.
They needed to be shown as it is in IE -> Favourites Menu. Is this possible and if yes then what do I need to do. I also want an ability to add them from the webpage and delete them.
Cheers.
-
-
You first need to give the asp.net account access to your favorites folder. Then you will also need to do the necessary coding to access the folder where they are located.
You can export your favorites to an html file if you want. In IE go to File->Import Export
Maybe you can set up a drop folder for this html file, and have the asp.net account access the html file itself. Then, whenever you want to republish your bookmarks, you just do a new export and the asp.net pages will get the changes.
-
Thanks for another solution. I will give it a try.
Cheers.