closing an ASP.net application

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

Guest

I have a link button that I want to have the program closed when I click it.
The quesition is what is the syntax that makes this possible.
 
bbdobuddy said:
I have a link button that I want to have the program closed when I click
it.
The quesition is what is the syntax that makes this possible.

<linkdefhere onclick="javascript:window.close();">

hth,
Mythran
 
In addition to Mythran, which closes IE.

session.abort

You cannot close the program, that belongs to all users and will stop when
there are no sessions more active.

I hope this helps,

Cor
 
Back
Top