Jquery+json implementation of Ajax two-level linkage case Analysis _jquery

Source: Internet
Author: User

The example of this article describes the method of realizing Ajax two-level linkage with Jquery+json. Share to everyone for your reference, specific as follows:

Backstage Handler.ashx

<%@ WebHandler language= "C #" class= "Handler"%>
using System;
Using System.Web;
Using System.Data;
public class Handler:ihttphandler
{
 Common coobj = new Common ();
 public void ProcessRequest (HttpContext context)
 {
  if (context). request.params["n"]!= null)
  {
   string num = context. request.params["n"]. ToString ();
   Context. Response.ContentType = "Text/plain";
   String str = "SELECT * From address where a_num2=" + num;
   DataTable dt = coobj.gettable (str);
   String json = Jsonhelper.datatabletojson (DT);
   Context. Response.Write (JSON);
  }
 public bool IsReusable
 {
  get
  {return
   false;
}}}

Front desk dropdownlist.html

<!
DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" "Http://www.w3.org/TR/html4/loose.dtd" >  

I hope this article will help you with your jquery programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.