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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top