Search Tools Links Login

Global.asa: To be or not to be?


To educate all coders when or when not to use the 'Global.asa' file and the conditions you must fullfill when you do use it. I knew I had a lot of trouble finding documentation like this. If you like it, please feel free to vote for it. Let me know what I can do to improve myself too, cuz this is my very first tutorial that I wrote. I've been told I'm good at explaining, but let me know ok? :) I'll see if I can dig up any more info on the 'Global.asa' file and try to continue this lesson. The most important reason why I created this tutorial is because most advanced scripts(i.e like my chat script, some database scripts, etc) use it. Very important piece of knowledge to be able to have at your fingertips. Now you can even impress your date with this stuff! ^_^ Not!! Hehe.

Original Author: Kaustav Acharya

Code


Did you use web based
email accounts, shopping bags or online auctions before? If you did , didn't you
ask your self how that web application recognize that this is me when I go from
one page to another inside the site, or how it recognizes what I'm doing and its
me who did that event and not another visitor to the site? How could the site
remember visitors and know if they are still connected or not, or what are they
doing?

If they are using IIS the answer probably lies within the
Global.asa, Global.asa is an optional file that can be used to handle
application and session events. For example with the Global.asa help you can do
some function when a new user come to your site and another function when that
user leaves the site. With the session object you can track users and their
events and much more.

Some Facts about Global.asa
:


?¿?á The file must be
named (Global.asa).
?¿?á Global.asa must be
stored in the root directory of the web application.
?¿?á Global.asa is processed automatically by the server
when
* The IIS starts and stops.
* Users start and stop sessions that use
the application's web pages.
?¿?á The scripts
in the Global.asa are used to:
*Initialize application and session
variables.
*Connect to databases.
*Send cookies.
?¿?á In the Global.asa your script must be enclosed with
the









End of Tutorial

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 117 times

Categories

ASP/ HTML

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.