1) 2^32 DataTables we can store in a DataSet.
dot net tips, DotNet tips, .Net Tips,Dot Net tips and tricks,Dot Net Solutions, OOPS Concept in C#,SQL Server, LinQ, Ajax, Java script, JQuery, Server Error details, daily .net tips and tricks , DotNet Interview Questions.
A potentially dangerous Request.Form value was detected from the client
This issue happening if we entered text in controls that look like HTML statement. We can omit this issue to set validation request is False.
<%@ Page Language="C#" MasterPageFile="~/ControlPanel/Site1.Master" ValidateRequest="false" AutoEventWireup="true" CodeFile="Cookies.aspx.cs" Inherits="ControlPanel_Cookies" %>
We can set this settings in globally when we write like below in web.config
<%@ Page Language="C#" MasterPageFile="~/ControlPanel/Site1.Master" ValidateRequest="false" AutoEventWireup="true" CodeFile="Cookies.aspx.cs" Inherits="ControlPanel_Cookies" %>
We can set this settings in globally when we write like below in web.config
<system.web>
<pages validateRequest="false" />
Subscribe to:
Posts (Atom)