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

  • SEARCH
  • Home
  • 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 9042087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T10:23:57+00:00 2026-06-16T10:23:57+00:00

I try to use the Kendo UI Autocomplete tool with a C# datasource. It

  • 0

I try to use the Kendo UI Autocomplete tool with a C# datasource.
It seems very easy in PHP:

    <?php
        include("connection.php");

    $arr = array();

    $stmt = $db->prepare("SELECT StateID, StateName FROM USStates WHERE StateName LIKE ?");

    // get the StartsWith value and append a % wildcard on the end
    if ($stmt->execute(array($_GET["StartsWith"]. "%"))) {
        while ($row = $stmt->fetch()) {
            $arr[] = $row;    
        }
    }

    // add the header line to specify that the content type is JSON
    header("Content-type: application/json");

    echo "{\"data\":" .json_encode($arr). "}";
?>

But I want to use a CSHtml file or something equivalent, do you have any idea on how to accomplish this?

I don’t want to create a controller attached with a model, etc… If it’s possible to make it with only one page, it would be great.

  • 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-16T10:23:59+00:00Added an answer on June 16, 2026 at 10:23 am

    If you are using MVC Create a controller like so….

    public class DataController : Controller
    {
        public JsonResult GetStates()
        {
            var data = GetData();
            return Json(new
            {
                data = data.Select(r => new
                {
                    StateId = r.ID,
                    StateName = r.Name
                })
            });
        }
     }
    

    Then all you have to do is set the datasource url to /data/GetStates

    If you are using webforms I would create a generic handler or a webservice (depending on how many functions you need)

    public class LoadStates : IHttpHandler
    {
    
        public void ProcessRequest(HttpContext context)
        {
            JavaScriptSerializer json = new JavaScriptSerializer();
            var data = GetData();
            context.Response.ContentType = "application/json";
            context.Response.Write(json.Serialize(new
            {
                data = data.Select(r => new
                {
                    StateId = r.ID,
                    StateName = r.Name
                })
            }));
        }
    
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
    

    For completness sake.. here is how you would pull off the same using a ashx webservice

    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    public class WebService1 : System.Web.Services.WebService
    {
        [WebMethod, ScriptMethod(ResponseFormat = ResponseFormat.Json)]
        public string HelloWorld()
        {
            var data = GetData();
            return new
            {
                data = data.Select(r => new
                {
                    StateId = r.ID,
                    StateName = r.Name
                })
            };
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try use string as a regular expression pattern but I've following errors PHP
I try use a integer array in java with the code below: public static
I try to work with DirectoryInfo, FileInfo with very long path. I try use
I try use reCaptcha and integrated with php, so if code is correct email
I have problems with PHP in Ubuntu 10.04. When I try use mysqli_result::fetch_all this
I try use Data.Array code It's ok, but slow. Then use Data.Array.Diff code Could
I try to use a variable in my kshell script but can't get a
I try to use the great particle emitter which Michael Daley build for his
I try to use SQL SERVER VIEW within RIA Services. So I created some
i try to use TBXML and getting this error TBXML class method +tbXMLWithURL not

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.