How to open the window "add to favoriates..." in IE

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good Morning,

I need help, Does anybody know how to open the window "add to favoriates"
of IE in .Net code

Thanks!
 
Output a javascript like this :

window.external.AddFavorite(location.href, document.title);

Take a look at the Page.ClientScript.RegisterStartupScript method.

HTH,

Steve
 
It works.

Thanks a lot!

Steve B. said:
Output a javascript like this :

window.external.AddFavorite(location.href, document.title);

Take a look at the Page.ClientScript.RegisterStartupScript method.

HTH,

Steve
 
Back
Top