I have a autocomplete textbox, and I need to fetch the students who are all in a particular degree and semester, for this am collecting the degreeId and store it in globally declared variable and am collecting the semester, now I need to pass the autocomplete textbox value,degreeId and semester....for this I tried to call my webservice like,
$("#txtStudents").autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
url: "/DataService.asmx/SearchStudents",
contentType: "application/json; charset=utf-8",
data: "{ 'searchTerm': '"+ JSON.stringify($("#txtStudents").val())+ "','degreeId': '"+JSON.stringify(degreeId)+"','semester': '"+JSON.stringify($("#ddlSemester :selected").text())+"'}",
dataType: "json",
success: function (data) {
and I receive this call in webservice as,
public string SearchStudents(string searchTerm, string degreeId, string semester)
{}
I have a class to fetch the student details for the particular semester and in the particular degree,as
public class SearchStudents : List<SearchStudent>
{
DataAccess.Entities buDateEntities = new DataAccess.Entities();
public SearchStudents(string searchTerm)
{
//int sem = Convert.ToInt32(semester);
//int degree = Convert.ToInt32(degreeId);
foreach (DataAccess.Student student in buDateEntities.Students.Where(s => s.IsDeleted == false
// && s.DegreeId==degree
//&& s.CurrentSemester==semester
&& ((s.FirstName.IndexOf(searchTerm) == 0 || s.MiddleName.IndexOf(searchTerm) == 0 || s.LastName.IndexOf(searchTerm) == 0)
)|| s.USN.IndexOf(searchTerm) == 0).OrderBy(s => s.FirstName).Take(5))
{
this.Add(new SearchStudent(student.StudentId
, student.FirstName
, student.MiddleName
, student.LastName
, student.Photo
, student.USN
, student.Email
, student.Mobile));
}
}
}
how do I call(I need to pass searchTerm,degreeId,semester) this class from the webservice....