TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ashok kumar
NA
89
36.1k
parameter not passing to the webservice from the jquery
Jul 19 2013 1:50 AM
HI,
I need to pass the parameter '999999999' to an webservice when i execute iam getting the error
System.InvalidOperationException: Missing parameter: callerid.
pls help me out.
function SearchText() {
$('#<%= txtusername.ClientID%>').autocomplete({
source: function (request, response) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "../HttpHandler/Autocomplete.asmx/GetCallername",
data: "{'callerid':'" +9999999999+ "'}",
dataType: "json",
success: function (data) {
response(data.d);
alert('i enter');
},
error: function (result) {
alert("Error");
}
});
}
});
}
Reply
Answers (
4
)
my code is not working
Jquery not working