Let's say I have some Classic ASP pages that produce all output via Response.Write.
I would like to port these pages over to ASP.NET, but (at least initially) avoid a total rewrite.
How should I set up my ASP.NET project to facilitate this? I assume I would have empty .aspx files and put the VB.NET/C# equivalent of the VBScript code in the codebehind file, and then use Response.Write from there?