Click here to Skip to main content
15,886,067 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hello sir...

i want to close browser window when user click on Exit button...how can i close browser.....plz help me......give me code..how can i do this..plz help me....
Posted
Updated 4-Jan-13 2:27am
v3
Comments
Zoltán Zörgő 4-Jan-13 8:28am    
What browser window? It is opened by your application? How can you identify it, at least do you know the url you have to look for?
Mrugesh08 6-Jan-13 23:48pm    
sir i want to close browser ....click on Exit Button...how can i do it....
Philippe Mori 12-Feb-16 22:30pm    
This is not clear at all. D you want to close the browser from a page, from a page that open another windows or is it an application that open a browser or use a browser control.
Does the exit button is one page, in a Windows application or even somewhere else?
Do you seriously think that we can understand your problem with so little information.
You should provide much more information on your problem. You don't even tell us if your application is done in ASP.NET, WinForms or WPF. Do you really thing we can guess all those details.

you can try this in JS

JavaScript
Window.open=self
Window.close()
 
Share this answer
 
 
Share this answer
 
v2
C#
string script = "window.opener = 'Self';window.open('','_parent',''); window.close();";
           ScriptManager.RegisterStartupScript(Page, typeof(string), "Close Window", script, true);
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900