where am i going to put global.asa file? my folder is under the folder web, wherein web is under wwwroot.
wwwroot
---- Web
--------- myFolder
--------------images
--------------scripts
Printable View
where am i going to put global.asa file? my folder is under the folder web, wherein web is under wwwroot.
wwwroot
---- Web
--------- myFolder
--------------images
--------------scripts
Generally the Global.asa file shd be in the root folder of the site.
so will it be in the wwwroot folder? or in web? :)
I think its the wwwroot folder.
hi,Quote:
Originally posted by veryjonny
I think its the wwwroot folder.
in ur case it shud be in the Web folder....
regds,
ashay
Thank yo ufor the answers guys. but hey, I'm confused now. which is which? any third party idea pls?
hi eimroda,
ur global.asa file shud be in the web folder
regds,
ashay
It depends on which is set in IIS as the app but usualy it is the one deeper than wwwroot (so web in your example). One way to find out is to set a session variable in teh global then check to see it is exists.
Michael
Use ISM to look at your web applications. Global.asa goes into the root folder of a web application. You can have multiple web applications per web server if you are running a Windows Server OS. The root folder of a web application is user defined - it can go anywhere you put it. IIS default to a single root web application at C:/inetpub/wwwroot/ or so, but for security and/or performance issues, this really shouldn't be left at the default.
Thank you guys!!!!