Can Asp and Asp.net work on the same Virtual directory?

  • Thread starter Thread starter Patrick B. \(pbutlerm\)
  • Start date Start date
P

Patrick B. \(pbutlerm\)

Hello,

I am running IIS 6.0 (win2003 server). I have an ASP.NET application
running in the root. And I have 2 subfolders running asp applications. My
question is this asp applications will work, or I need to do anything
special to them?
I configured the subfolders to run as applications..is this necessary?

Can you guys point me to best practices documents, or links?

Really appreciated,

Patrick B.
 
The default document for the directory
must be taken into consideration, too.

The order in which default documents are searched
is bound to have an effect when applications are browsed
without a default document being specified in the URL.

i.e.

If the order is default.aspx and then default.asp, when you browse to
http://yourserver.com/ instead of to http://yourserver.com/default.asp ,
you'll get the ASPX app, while if the order is default.asp and then
default.aspx, when you browse to http://yourserver.com/ you'll get
the ASP app.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top