Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8057445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:02:08+00:00 2026-06-05T09:02:08+00:00

I have Jquery autocomplete working with a HttpHandler – .ashx file. It works fine,

  • 0

I have Jquery autocomplete working with a HttpHandler – .ashx file. It works fine, I am wondering is there an easy way to use the autocomplete with a [WebMethod] right in the code behind – and are there any advantages to this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T09:02:10+00:00Added an answer on June 5, 2026 at 9:02 am

    Both implementations of HttpHandler and Web-Services perform identically,
    however I prefer HttpHandler as it is lightweight,
    on the other side a web-service encodes request & response xml data which adds extra payload.

    POP JqueryUI Autocomplete with web-methods:
    http://blog.nitinsawant.com/2011/09/integrating-jquery-ui-autocomplete-in.html

    JS:

    $(document).ready(function () {
                $("#<%=txtAutoComplete.ClientID %>").autocomplete({
                    source: function (request, response) {
                        $.ajax({
                            url: "webservice/TestService.asmx/SearchData",
                            data: "{ 'q': '" + request.term + "', 'limit': '10' }",
                            dataType: "json",
                            type: "POST",
                            contentType: "application/json; charset=utf-8",
                            dataFilter: function (data) { return data; },
                            success: function (data) {
                                response($.map(data.d, function (item) {
                                    return {
                                        label: item.Name,
                                        value: item.id + ""
                                    }
                                }))
                            }
                        });
                    }
                });
    });
    

    C#:

    [System.Web.Services.WebMethodAttribute(),  System.Web.Script.Services.ScriptMethodAttribute()]
    public List<tdata> SearchData(string q, int limit)
    {
        return new List<tdata> { new tdata { id = 0, name = "nitin" } };
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery autocomplete field working fine followed by a date input field.
I have a site with a form with autocomplete using jquery. It works fine,
I have a jQuery autocomplete working against my testbox just fine except when I
I have bassistance jquery-plugin-autocomplete setup and working fine for FF and chrome but with
So I am working with ASP.Net MVC + jQuery autocomplete and I have a
I am using jQuery autocomplete which is working fine with existing element but not
I have the jquery autocomplete example working on a test page, but can't seem
I have the jQuery UI Autocomplete setup to my liking and working perfectly, but
I installed the JQuery token-input plugin. https://github.com/loopj/jquery-tokeninput Autocomplete is working, but I have a
I am using the jQuery autocomplete (http://jqueryui.com/demos/autocomplete/) and have it working but when a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.