27 lines
777 B
XML
27 lines
777 B
XML
<?xml version="1.0"?>
|
|
<!--
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
https://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
<configuration>
|
|
<!--
|
|
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
|
|
|
|
The following attributes can be set on the <httpRuntime> tag.
|
|
<system.Web>
|
|
<httpRuntime targetFramework="4.6.2" />
|
|
</system.Web>
|
|
-->
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.6.2"/>
|
|
<httpRuntime targetFramework="4.6.2"/>
|
|
</system.web>
|
|
|
|
<system.webServer>
|
|
<httpProtocol>
|
|
<customHeaders>
|
|
<add name="X-Frame-Options" value="SAMEORIGIN" />
|
|
</customHeaders>
|
|
</httpProtocol>
|
|
</system.webServer>
|
|
</configuration> |