ASP.NET MVC İstemcide zararlı olabilecek bir değer Request.Form algılandı hatasının çözümü

makale.baslik

System.Web.HttpRequestValidationException: İstemcide zararlı olabilecek bir değer Request.Form algılandı.

System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from the client.

Şeklindeki hatayı [AllowHtml] kodu ile çözebilirsiniz. Kodu model sınıfınızda ilgili alanın üstüne eklemeniz yeterli.

using System.Web.Mvc; kodunu eklemeyi de unutmayın

 

using System.Web.Mvc;

public partial class urun
{
    public int id { get; set; }

    [AllowHtml]
    public string icerik { get; set; }
}

 

Paylaş:

Yorumlar

    Bu yazı için hiç yorum yok. İlk yorumu yapmak ister misiniz?