I have asp.net application hosted in Server, when the user clicks on a button, all the windows explorer should be closed before I open a new one at client side. How to do that?
Close all Windows Explorers in Client Machine
Collapse
X
-
Tags: None
-
You can probably accomplish this using JavaScript.
You can close the windows your JavaScript opened using JavaScript.
You cannot close windows that your script didn't open.
So, like Rabbit said, how are you opening the windows in the first place?
Are you keeping a reference to these open windows?
If you aren't, you should be so that you can close them.
-FrinnyComment
Comment