IE Browser and ASP.NET

  • Thread starter Thread starter david
  • Start date Start date
D

david

(1) How do I update the IE browser's status bar from
within an ASP.NET web application?

(2) How can I capture the event of closing the IE browser
from within an ASP.NEt web application?

(3) How can I suspend any activity - disable accepting
keyboard or mouse clicks on a web page until a prior
client request is processed by an IIS server.

Thanks for your understanding and assistance in this
matter.
 
1) only with client script.

<script>
window.status = "myMessage";
</script>


2) can not be done, best you can do is catch page unload.


3) with client script, onsubmit, set event handlers for keyboard and mouse
and throw them away. code is slightly different depending on the browser.
 

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