Use two languages n the same project with ASP.NET 2.0
I need to migrate a five year old project written in VB with a few added functions in C#. This can be done easily with a separate sub folder in the App_Code along the following in web.config file.
<compilation>
<codeSubDirectories>
<add directoryName="VBCode" />
<codeSubDirectories>
<add directoryName="VBCode" />
<add directoryName="CSharpCode" />
</codeSubDirectories>
</compilation>
</codeSubDirectories>
</compilation>