From: "Sean McCleary"
Hi all, question on config:
The example docs say how to get ASPX files running in c:\StoreCSVS, and aliasing that to /Store/CSVS.
And that works forme.
So uh... what if I want my ASPX files to just be in the "/" directory? i.e. I want people to get to http://myhost/index.aspx
Why?
Do _all_ your ASPX files belong to the same "web application" (idea or purpose)?
Example: Are all aspx files only for dog owners and not for cat or plant owners (or star watchers)?
Do all your dog, cat, plant and star aspx files share the same default "/" HttpApplication "global" information?
ASP.NET is not like html ways where one can throw any amount of html files into the same folder with no problems.
It is best to separate your aspx files
into a different folder (server\animal\dog)
that uses a different host (AspNetMount server/animal/dog)
with in a different AppDomain (which is usually auto created by the host created by AspNetMount).
ASP.NET Application Walkthrough http://msdn.microsoft.com/library/en-us/cpguide/html/cpconaspnetapplicationwalkthrough.asp
ASP.NET Applications http://msdn.microsoft.com/library/en-us/cpguide/html/cpconaspnetapplications.asp
ASP.NET State Management http://msdn.microsoft.com/library/en-us/cpguide/html/cpconaspstatemanagement.asp
Introduction to Microsoft ASP.NET http://www.microsoft.com/seminar/shared/asp/view.asp?url=/Seminar/en/20010109devt1-04/manifest.xml
Jeff
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
