Click here to Skip to main content
15,891,902 members
Articles / Programming Languages / C#

How to Close the Browser Window from a Silverlight Application

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
9 Aug 2011CPOL1 min read 27.4K   5  
If you are developing a secured site and want to close the browser window just after the user logs out from the application, this small tip will help you.

Almost all secured sites like bank websites ask you to close your browser window after you sign out from a web application. This is a security measure which actually removes all session details from the browser cache.

If you want to develop the same behavior in your Silverlight application, how will you do this? This post covers the code to implement this functionalityRead to know more.

If you are developing a secured site and want to close the browser window just after the user logs out from the application, this small tip will help you. This is not a difficult job to implement. Just a single line of code will do the trick for you.

Use the "System.Windows.Browser.HtmlPage.Window.Invoke()" method to call the Close() method of the browser window, as shown in the below code snippet:

C#
private void OnCloseClick(object sender, RoutedEventArgs e)
{
    System.Windows.Browser.HtmlPage.Window.Invoke("close");
}

The above code when called will close the browser window where your Silverlight application is hosted. If it is a tab, it will close the Window tab instead. If you are using it inside Internet Explorer, it will ask you whether you really want to close the browser. If you press "No", it will remain in that page, and clicking "Yes" will close the browser tab/window.

SNAGHTMLfcd46a3_3_.png

This article was originally posted at http://www.kunal-chowdhury.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
-- There are no messages in this forum --