Reputation: 553
I am trying to upload my website to hosting space which looks to be using IIS 7.5. Website uploads but when I try to view it is generates error. the issue is not very obvious . but the error says that there is some problem with the web.config but on the development machine it is ok. check the www.spiralsnet.com for further detailed error message. I am not sure what is cuasing this issue. please help.
Upvotes: 0
Views: 64
Reputation: 45083
As the error message states:
There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined
Remove the entry from your web configuration and try again.
Upvotes: 2
Reputation: 5626
Your hosting space has a web.config higher up that already defines the scriptResourceHandler
section. Remove the definition from your config.
In the Detailed Error Information section of your error page, the specific error is provided
Config Error: There is a duplicate 'system.web.extensions/scripting/scriptResourceHandler' section defined
Upvotes: 1