[ASPX][VB.NET] add webform to favorite

Dnx

Newcomer
Joined
Feb 15, 2005
Messages
15
hi there
i would like to create a button who allows everybody to add the website in the favorites
thanks in advance.
 
How about Javascript?

function bookmark (title, url)
{
if (document.all)
{
window.external.AddFavorite(url, title);
}
else if (window.sidebar)
{
window.sidebar.Addpanel(title, url, "");
}
}
 
Back
Top