473,322 Members | 1,241 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

Import BookMarks

Hi all
I want the functionality in my website to import the clients browsers bookmarks
, so that the client can access his bookmarks from any where pls help in this.
I m doing this in Asp.net

Thanks And Regards
Geetanjali
Sep 13 '06 #1
3 1461
hi
put one hyperlink like this:::

<a href="javascript:BookMark()" style="COLOR: white; BACKGROUND-COLOR: gray">Book Mark This Site</a>

the following is the function for calling.....

<script language=javascript>
function msieversion()
{
var ua = window.navigator.userAgent
var msie = ua.indexOf ( "MSIE " )
if ( msie > 0 ) // If Internet Explorer, return version number
{
return parseInt (ua.substring(msie+5, ua.indexOf (".",msie)));
}
else // If another browser, return 0
return 0
}
function BookMark()
{
if (msieversion()>= 4)
{
var url=window.location.href;
var title = "SCRIPT PAGE: "; //for title
window.external.addFavorite(url,title);
}
else
{
alert("To Bookmark : CTRL + D");
}
}

<script>
Sep 13 '06 #2
Thanx for help

But i m sorry to say that it was not a solution to my problem .
Wat this code is doing is bookmarking the current page which is opened in my browser in the favourite folder wat i need is to import the already saved bookmarks of client browser at my server side
Sep 13 '06 #3
Hi

Did you find a solution to this? I'm also interested in finding out how to do this.

Thanks
Mar 4 '08 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

13
by: NoSpamThankYouMam | last post by:
I am looking for a product that I am not sure exists. I have bookmarks to webpages in Internet Explorer, Mozilla Firefox, Opera, Netscape Navigator, and on a "Favorite Links" page on my website....
5
by: Johnny Meredith | last post by:
I have seven huge fixed width text file that I need to import to Access. They contain headers, subtotals, etc. that are not needed. There is also some corrupt data that we know about and can...
2
by: Thomas Anderson | last post by:
I automatically generate several PDF a night from a DB I manage. Below is a snippet of code that just tweakes the registry settings to store path and filename then prints the PDF. Typically a...
1
by: gaucho | last post by:
Hi all, I'm experiencing some problems when filling in bookmarks in word. With my first query (single row returned), no problem at all. Yet, with my new query (which now return 2 rows), i get...
0
by: Mark Hayworth | last post by:
In VB6, you could set bookmarks that were in different files/module/classes/documents. When you clicked the flag tool to go to the next bookmark, it would take you there, regardless if that...
4
by: Viviana Vc | last post by:
Hi all, I used until now Visual Studio 2003 and now I updated to Visual Studio 2005 and I have problems with the bookmarks. 1) until now if you had several bookmarks into one document, with F2...
15
by: Francach | last post by:
Hi, I'm trying to use the Beautiful Soup package to parse through the "bookmarks.html" file which Firefox exports all your bookmarks into. I've been struggling with the documentation trying to...
2
by: Alan T | last post by:
I have two bookmarks, eg. beginMark and endMark I need to get the text between these 2 bookmarks, how do I do that? eg. <beginMark> Hello Word! This is Saturday.
3
by: mbisping | last post by:
Hello, is there a way to create regular non-sidebar bookmarks in Firefox with javascript? If not, why? Is there a workaround - maybe with a plugin? Thanks Meikel
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.