web.config file
I have some problem with web configuration settings.
Here is my code..
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<pages validateRequest="false" ></pages>
<customErrors mode="Off"></customErrors>
<compilation>
<assemblies>
<add assembly="HelloObjVB"/>
</assemblies>
</compilation>
</system.web>
<appsettings>
<add key="ConnString" value="Provider=MSDAORA.1;Password=epastest;User ID=epastest;Data Source=tst1;"/>
</appsettings>
</configuration>
The error which I'm getting is File or assembly name HelloObjVB, or one of its dependencies, was not found.
Even I'm getting same error in appsettings also. Do I need to write any additional code to work this?
Please help.
Thanks,
Apry
|