A potentially dangerous Request.Form value was detected from the client

前端 未结 30 2854
刺人心
刺人心 2020-11-21 05:24

Every time a user posts something containing < or > in a page in my web application, I get this exception thrown.

I don\'t want to go

30条回答
  •  耶瑟儿~
    2020-11-21 05:43

    The answer to this question is simple:

    var varname = Request.Unvalidated["parameter_name"];
    

    This would disable validation for the particular request.

提交回复
热议问题