asp.net - Can .asp & .aspx pages work if placed in same virtual directory? -


can .asp & .aspx pages work if placed in same virtual directory?

short answer yes , have used such configuration in past.

long answer there unlikely chances of having trouble - essentially, both asp , asp.net run within same application pool , hence same worker process , there can issues related same. example, asp page using com components written .net version higher (or different) asp.net version using , asp.net code gets triggered earlier loading clr lower version within process - may cause issue .net code com components.

the best way try , test reasonable extent.


Comments