我想將數據作爲Html發送到控制器並保存在數據庫中。我嘗試發送數據爲HTML,但我失敗了。發送HTML數據到控制器ASP .NET MVC4
這裏是代碼
$("#savechanges").click(function() {
$("#notify").val($("#notify_to").val());
//here I want to send html to controller
$("#editor").val($("input[name='" + "Editor2" + "']").val());
$("#nid").val($(".notifybox").attr('id'));
$("#form_editing").submit();
});
當我點擊保存按鈕,然後這個錯誤顯示
我能做些什麼來解決這個問題
另一個潛在的解決方案:http://stackoverflow.com/questions/8808910/htmlencode-on-post -for-asp-net-mvc-3-html-textareafor使用'[AllowHtml]'屬性。 –