T
Tariq
I have a app.config file that looks something like this.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="test" value="10001"/>
</appSettings>
<fileTypes>
<add key="htm" value="c:\temp"/>
<add key="jpg" value="c:\temp\jpg"/>
<add key="png" value="c:\temp\png"/>
</fileTypes>
</configuration>
The issue is when I try to bind a datatable to a datagrid I get the
following ConfigurationException saying "Unrecognized configuration
section fileTypes".
Can someone explain why this is to me?
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="test" value="10001"/>
</appSettings>
<fileTypes>
<add key="htm" value="c:\temp"/>
<add key="jpg" value="c:\temp\jpg"/>
<add key="png" value="c:\temp\png"/>
</fileTypes>
</configuration>
The issue is when I try to bind a datatable to a datagrid I get the
following ConfigurationException saying "Unrecognized configuration
section fileTypes".
Can someone explain why this is to me?