Quote Originally Posted by kiran_q8
The actual requirement is:

there is a webpart in the portal home page "My Links" which shows the user's favorites links in his/her browser and allows the user to click on the link to get that page. It's an intranet portal.

Is there any clientside code for this or any other way?
There are only two ways of doing this that I can think of:

1. Like I've mentioned a few times before, if AD supports this (and I don't know that it does) and your intranet is authenticating through AD then you may be able to use impersonation, have the website impersonate as the user who's browsing the page, and grab their bookmarks from their roaming profile. Kind of odd but if favorites are setup via AD to travel with the user and you're using AD authentication then I don't see why it wouldn't be possible.

2. Write an ugly ActiveX object, install it onto each user's machine and somehow sync between Sharepoint and the user's account. Pretty ugly but it can work (it'll only work with IE though).

There is simply no way of doing this with client side code otherwise every website you visit would have all of your favorites which would be a huge security issue as well as a privacy issue.

Honestly, this is a very odd requirement so you may want to verify that your client understands the disconnect between client and server and the security / privacy protections that are in place. Either solution you make may not be compatible with any browser but IE.