Function:
$.post("/SurveyResult.aspx", {
test: 'testing',
}).done(function (data) {
alert("Data Updated");
});
ServerSide of :
protected void Page_Load(object sender, EventArgs e)
{
var formValue = Request.Form["test"];
}
function is posting well But I'm getting null value of test at server side. Do not know what the issue is.