I am working on an ASP.NET 2.0 application.
On my page, I have:
<%@ Page Title="" Language="C#" MasterPageFile="~/AdminPanel/MasterPage.master" AutoEventWireup="true" ValidateRequest="false" CodeFile="SEO.aspx.cs" Inherits="AdminPanel_SEO" %> <asp:TextBox ID="TextBox1" TextMode="MultiLine" runat="server"></asp:TextBox> <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
and on the directive page I have validateRequest="false" . It works locally, but it does not work on IIS. Any idea guys?
source share