This might be a crazy question (I\'m somewhat new to ASP.NET). But is it possible to mix ASP.NET code with classic ASP e.g. embedded a form created in ASP.NET in a classic A
You can't. The major issue is that ASP and ASP.NET run in different processes. You can have a stand alone ASP page within an ASP.NET application but you are not going to be able to share any code between them. In essence you would have two applications running in the same directory. There is no way to share any data which is stored in one process (for example Session data).