我發送具有與單個鍵像這樣的「數據」屬性是一個FORMDATA AJAX請求:讀FORMDATA對象在服務器端ASP.NET
var fData = new FormData($(accRegForm));
fData.append("Name", "Test Test");
$.ajax({
type: "POST",
data: JSON.stringify(fData),
url: "/DataService.ashx",
contentType: "application/json; charset=utf-8",
dataType: "json",
cache: false
});
現在在服務器上,怎麼能我在ASP.NET中檢索「Name」的值?
由於