To add multiple programming language in the app_code folder do the following steps :
1). Add this in the web.config
PHP Code:
<configuration>
<system.web>
<compilation>
<codeSubDirectories>
<add directoryName="VB_Code"/>
<add directoryName="CS_Code"/>
</codeSubDirectories>
</compilation>
</system.web>
</configuration>
2). Create different sub folders for each language.
PHP Code:
/App_Code/VB_Code
/App_Code/CS_Code
3). Put your C# language code in cs_code folder and place vb.net language code in vb_code folder.
Bookmarks