I am using azure web role for hosting my asp.net mvc website. it uses frames at some places. I am try to set the x-frame-options to sameorigin in IIS, but it does not work correctly. If i use fiddler to check my website header, i can see two copies of x-frame-options. 1) x-frame-options:Sameorigin 2)x-frame-options:Deny.
This is creating issue to my website as it does not allow frame access from parent.
From where can I remove x-frame-options:Deny value. I tried to add code also in global.asax to change the value of it, but always two copies are added.
Do you know how to change the value of this header so that i can atleast access my website content within iframe.