I am trying to use RadSpell , but a web.config security setting is not allowing RadSpell to open it's frame popup window. The security setting is a must setting , i can not remove this setting. This setting is to prevent click jacking. ( more on this - https://www.owasp.org/index.php/Clickjacking)
Here is my web config setting.
<httpProtocol>
<customHeaders>
<clear/>
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains" />
<add name="X-Frame-Options" value="DENY"/>
<add name="Content-Security-Policy" value="frame-ancestors 'inherit' " />
<remove name="X-AspNet-Version" />
<remove name="X-Powered-By" />
</customHeaders>
</httpProtocol>