Thursday, March 26, 2009

How to run VB code and C# code in appCode folder?

In the web.config, under compilation

<compilation debug="true" strict="false" explicit="true">

add,
<codeSubDirectories>
<add directoryName="VBCode" />
<add directoryName="CSCode" />
</codeSubDirectories>


VBCode and CSCode are the folders in the AppCode.

1 comment:

Anonymous said...

Can you pls show me some example of using this. Thanks.