I hadn't meant to start a debate about organization of ASP.NET
Applications within a web site.  I just want to know if it's possible
to have ASPX files in the root, i.e. http://myhost/index.aspx

Let's say, for example, that I only have one web application, and the
hostname of the web site describes it fine.  Could I have
"http://www.ilikepuppies.com/index.aspx"; or would I need to make it
"http://www.ilikepuppies.com/ILikePuppies/index.aspx";?

Again, I'm just asking if this is possible, not if it's the best idea
in every situation.

Sean


On Fri, 17 Dec 2004 10:01:37 -0600, Jeff White <[EMAIL PROTECTED]> wrote:
> 
> 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]
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to