
June 23rd, 2000, 01:57 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Alan (alienvu@netzero.net)</b></i><br />If you do not use extensive features then ASP 2 and ASP 3 should be the same. Global.asa should be the same except some thread model.<br /><br />To learn how to use global.asa you should find a book about it. Generally, global.asa stores variables that you can use for the application between everyone and between pages of a particular user. <br /><br />Application variables (e.g. Application("varName")) are seen and accessed by everyone who is using the application. Session variables (e.g. Session("varName")) are used by your session but no one else.<br />SUB Application_OnStart is fired only once when the web server is started<br />SUB Application_OnEnd is fired only once when the web server is stopped<br />SUB Session_OnStart is fired only once when someone accesses the web site and this applies to this particular user<br /><br />SUB Session_OnEnd is fired only once when the particular user disconnects completely from the web site or when time out period expires.<br /><br /><br /><br />------------<br />aldy at 5/16/2000 10:23:57 PM<br /><br />which one that i should use ??<br />I already studied with ASP 2 and ASP 3 . There are a lot of different between them. <br />Personally, I preferred ASP 3 but I could not found web hosting that support ASP 3, IIS 5 and<br />window 2000.<br />Now I use asp 2 in windows NT 4 server.<br /><br />I have trouble when using global.asa file. Would <br />you help me to teach me how to use global.asa file. And I need help in how to set up NT server so my asp application can run properly.
|