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
 

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

Back
Top