I am practcing web.config
file from here
when i copy and paste following code:
<configSections>
<section name ="ProductSection" type ="<ProductSection" />
</configSections>
<ProductSection>
<gridSettings title ="Latest Products" count ="20"></gridSettings>
<color background="FFFFCC" foreground="FFFFFF"></color>
</ProductSection>
I got several errors like :
- tag was not closed on second line.
</section>
is missing.- the namespace
'section'
can not include child element.
How to remove these errors and run it smoothly.