CKeditor 會輸入一些內容時,其實他是HTML格式,當我們利用Form Data包起來傳至後端時
因為有HTML格式,.net 會偵測出潛在的風險
解決方案
MVC :
-
webconfig : <httpRuntime requestValidationMode="2.0"/>
-
[ValidateInput(false)]
public ActionResult Submit(){}
參考資料:
CKeditor 會輸入一些內容時,其實他是HTML格式,當我們利用Form Data包起來傳至後端時
webconfig : <httpRuntime requestValidationMode="2.0"/>
[ValidateInput(false)]
public ActionResult Submit(){}
參考資料: