User1458302262 posted
Hi,
My project mixed C# and VB.NET. As a result I've 2 folder in App_Code. It's is - CSCode and VBCode. So my web.config looks like as follow,

<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<codeSubDirectories>
<add directoryName="VBCode" />
<add directoryName="CSCode" />
</codeSubDirectories>
</compilation>
<globalization
uiCulture="auto"
culture="auto"
enableClientBasedCulture="true" />
<httpModules>
<add name="LanguageSettingModule" type="LanguageModule, App_Code" />
</httpModules>
</system.web>
</configuration>
When executed, looks like httpModules can't find - LanguageModule.cs

Please help edit my web.config
<httpModules> <add name="LanguageSettingModule" type="LanguageModule, App_Code" /> </httpModules>
I'm stucked