Web.confige aşağıdaki kodu ekleyebilrisiniz:
<configuration>
...
<location path="MyFolder/.aspx">
<system.web>
<pages validateRequest="false" />
<httpRuntime requestValidationMode="2.0" />
</system.web>
</location>
...
</configuration>
Artı olarak bu hatayı aldığınız metodun üzerine validateinput(false) attribute de eklenebilir.
[HttpPost, ValidateInput(false)]
public virtual ActionResult Edit(int id, FormCollection collection)
{
...
}
0 yorum:
Yorum Gönder