In my project i am was getting error:
error:requiredPermission attribute not declared
to resolve this i did google http://dotnetslackers.com/Community/forums/requirepermission-attribute-is-not-declared/p/1241/12676.aspx and then i found that i will have to add "xmlns" in my webconfig's configuration tag and i did that:
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
but then i got new error:
Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'.
and to resolve this i did google again and found a link:http://www.opcg.com/post/Could-not-find-schema-information-for-the-element-httpschemasmicrosoftcomNetConfigurationv20-configuration.aspx which is saying to remove that "xmlns" to get error resolved.
so both conditions become contradictory please help me and tell what should i do.