I have 2 web sites (in Visual Studio - separate solutions) - one in VB.NET, one in C#. Ideally, I d like to make them both web application projects, compile each codebase into to a DLL, drop both DLLs in the bin and drop both sets of .aspx pages under web root folder. So some aspx files would have Language="C#" and some Language="VB.NET", and in the bin you d have /bin/MyVB6.dll, /bin/MyCSharp.dll. The .aspx pages could be broken up into separate sub-directories. Is this even possible? - Or would they need to be separate virtual directories/web apps in IIS?
Thanks