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

前端 未结 30 2135
刺人心
刺人心 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:36

    You can use something like:

    var nvc = Request.Unvalidated().Form;
    

    Later, nvc["yourKey"] should work.

提交回复
热议问题