Quote:
quote:Originally posted by anubhav.kumar
what about web.config?
|
What about it? You deploy it with the rest of your application. Just make sure that the web.config file is in the root of the application. This means that you will either need to move it up some number of directories in order to get it to the root, or you need to make the directory you are putting the ASP.NET files in a virtual directory/web application.
Quote:
quote:Originally posted by anubhav.kumar
what precautions sholu be taken if my site is a mix of classic asp and asp.net pages?
|
ASP and ASP.NET run in separate contexts. ASP pages are handling by the ASP runtime processor (usually running in the context of a DLLHOST process) while the ASP.NET pages are handled by the ASPNET_WP process. They won't interfere with each other even if they are in the same directory.