0
我想將變量傳遞給使用JQuery與Ajax的Web方法。我對傳遞變量的語法感到困惑,並嘗試了許多不同的形式,但沒有成功。jQuery AJAX將變量傳遞給webmethod
將WebMethod是:
public string GetStudentName(string studentID)
{
string name = string.Empty;
int id = 0;
// convert the string to an integer
id = int.Parse(studentID);
// If the studentID is withinrange
if (id < 0 || id >= _StudentList.Count)
{
name = "Not Found";
}
else
{
name = _StudentList[id].LastName + ", " + _StudentList[id].FirstName;
}
return name;
}
學生名單在前面的代碼填充。
jQuery的代碼是:
$('#cmdLookup').click(function()
{
var sid = $("#<%=txtID.ClientID%>").val();
$.ajax({
type: "POST",
url: "Services/WSStudent.asmx/GetStudentName",
contentType: "application/json; charset=utf-8",
data: sid,
dataType: "json",
success: function (result)
{
$('#<%=txtStudentName.ClientID%>').text(result.d);
},
error: function (XMLHttpRequest, textStatus, errorThrown)
{
alert('Error: ' + XMLHttpRequest.responseText);
}
})
})
如果有人能告訴我正確的語法傳遞SID變量將是巨大的。
這個asp-classic如何?對我來說更像ASP.NET。 – mikeyq6