I have a website with .net framework 4 and telerik 2012, when i uploaded my web site on the server one of my page has this error.
The entry 'ConnectionString' has already been added.
for solving this err i use this solution:
<remove name="ConnectionString" />
and after this line ,define my connection in web config. but this err apear :
** Method not found: 'System.Web.UI.ScriptResourceDefinition System.Web.UI.ScriptResourceMapping.GetDefinition(System.String)'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.MissingMethodException: Method not found: 'System.Web.UI.ScriptResourceDefinition System.Web.UI.ScriptResourceMapping.GetDefinition(System.String)'.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
**
{Note : this err just occurred on the server not in local } and when i removed this line :
<remove name="ConnectionString" />
the first err apear again : The entry 'ConnectionString' has already been added.
What can I do now?