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 6763775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:30:59+00:00 2026-05-26T14:30:59+00:00

I had a similar problem a few months ago, but that was easily solved

  • 0

I had a similar problem a few months ago, but that was easily solved because I was working on an MVC application. I’m working on an old webforms application at the moment.

I can see the proper results coming back in a debugger, but nothing is getting displayed in my textbox. I must not be formatting the results properly. This is difficult, because WebForms doesn’t have a built-in serializer for JSON (to my knowledge). So instead, I’m returning pipe-delimited content, and then splitting it on return.

My javascript…

function myAutoComplete(myTextBox, myLabel, myHiddenVar) {
$(myTextBox).autocomplete({
    source: function (request, response) {
        $.ajax({
            type: 'POST',
            dataType: 'json',
            url: "myAutoCompletePage.aspx?q=" + request.term +
                "&mySearchType=" + $(myLabel).html(),
                success: function (data) {

                    response($.map(data, function (item) {
                        var result = item.split("|");
                        return { label: result[0], value: result[0], id: result[1] }
                    }));
                 }
            });
        },
        select: function (event, ui) {
            $(myTextBox).val(ui.item.name);
            $(myHiddenVar).val(ui.item.id);
            return false;
        }
    });
}

My code-behind…

foreach (DataRow myDataRow in myDataTable.Rows)
{
    Response.Write(myDataRow[0].ToString() + "|" + myDataRow[1].ToString() + Environment.NewLine);
}
Response.End();
  • 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-05-26T14:30:59+00:00Added an answer on May 26, 2026 at 2:30 pm

    You should use (your response is not valid JSON) :

    $.ajax({dataType: 'text'})
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I had a similar question before, but this is a few steps beyond that
I had similar problem few days earlier but now is more complicated. I am
A few months ago I had to write a small tool to program the
I'm currently working on a web application that's sort of similar to Google Reader
I had a similar question a while back, but with much less of a
I recently had a similar thread about this, but now I need to animate
Had a good read through similar topics but I can't quite a) find one
I've had a look at other questions similar to this one but I couldn't
I have found some similar Que's on SO but had not find the solution.
i have seen similar posts here but i have had no luck solving my

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.