Skip to main content

Use json to return list from database and append result in dropdown or use it in your own way

Here I am using JSON to fetch state as per country selected in dropdownlist without any refresh or postback and append all states belong to that contry to another dropdown List.

First create one class in .cs file in order to fetch array type data or any number data from server like state name and state value as per country selected :

 public class getdata
    {
        private string _State;
        private string _StateCode;


        public string State
        {
            get
            {
                return _State;
            }
            set
            {
                _State = value;
            }
        }
        public string StateCode
        {
            get
            {
                return _StateCode;
            }
            set
            {
                _StateCode = value;
            }
        }

    }


Then create webservice in asp.net.cs file as follow :

 [WebMethod]
    public static List<getdisttdata> getdisttt(string prefixText)
    {
        List<getdisttdata> li = new List<getdisttdata>();
        try
        {
            if (connection.State == ConnectionState.Closed)
                connection.Open();
            SqlCommand cmd = new SqlCommand();
            cmd.CommandText = "sql query";
            cmd.Connection = connection;
            cmd.CommandType = CommandType.Text;
            SqlDataAdapter adp = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            adp.Fill(ds);
            connection.Close();
            foreach (DataRow dr in ds.Tables[0].Rows)
            {
                getdisttdata bkl = new getdisttdata();
                bkl.distt = dr["District"].ToString();
                bkl.disttcode = dr["CityCode"].ToString();
                li.Add(bkl);
            }

        }
        catch (Exception ex)
        {
            //  return null;
        }
        return li;
    }

Now list is returned from webserver by webmethod

Then Create javascript in client side as follow :-


        function getCstate() {

            var statecod = $("#<%=ddlCCountry.ClientID %>").val();
            $("#<%=txtCCity .ClientID %>").css("display", "none");
            $.ajax({
                type: "POST",
                url: "frmAdmissionForm.aspx/getstate",
                contentType: "application/json; charset=utf-8",
                data: JSON.stringify({ prefixText: statecod }),
                dataType: "json",
                success: function (response) {
                    $("#ctl00_ContentPlaceHolder1_ddlCState").find('option').remove().end();
                    $("#ctl00_ContentPlaceHolder1_ddlCDistt").find('option').remove().end();
                    $("#ctl00_ContentPlaceHolder1_ddlCCity").find('option').remove().end();
                    $('<option value=0>-Select-</option>').appendTo("#ctl00_ContentPlaceHolder1_ddlCDistt");
                    $('<option value=0>-Select-</option>').appendTo("#ctl00_ContentPlaceHolder1_ddlCCity");
                    var teams = response;
                    for (var i = 0; i < teams.length; i++) {
                        statename = teams[i].State;
                        stateid = teams[i].StateCode;
                        $('<option value="' + stateid + '">' + statename + '</option>').appendTo("#ctl00_ContentPlaceHolder1_ddlCState");
                    }
                    $("#<%=hdnCcountry.ClientID %>").val($("#<%=ddlCCountry.ClientID %>").val());
                    if ($("#<%=hdnCstate.ClientID %>").val() != "" && check == 'F') {
                        $("#<%=ddlCState.ClientID %>").val($("#<%=hdnCstate.ClientID %>").val());
                     
                    }

                }
            })

        }


You can call this function on blur or onchange event of country dropdownlist as follow :
 <asp:DropDownList ID="ddlCCountry" runat="server" DataSourceID="sqlCCountry" onblur="getCstate('T')"
                                                        TabIndex='1' Width='255px' DataTextField="country" DataValueField="CountryCode"
                                                        ToolTip="Select Country">
                                                    </asp:DropDownList>

All done Thanks :) dont forgot to follow this blog :)

Comments

Popular posts from this blog

Snake Xenzia

Hello friends did you remember the GAME you play on nokia 1100 , SNAKE XENZIA .Yeah the same you are thinking ,a snake eating food and go longer and longer till it dies. Why to play it on mobile when it is available on your pc ??? It is made in .net framework 4.0 .Just install the setup and play SNAKE XENZIA . Have Fun !! DOWNLOAD IT   HERE  . Related articles Rattlesnake Dreams "Classsic Snake Game In C"? Resident Evil 6 gamescom demo takes in a giant snake battle Snakes & ladders

New Smartphone with 12GB RAM, 1TB storage unveiled

Here is the News -- Turing Robotics Industries (TRI) has unveiled its latest smartphone - the Turing Phone Cadenza. It comes with 'Voice On' technology which enables the smartphone to be switched On/Off using voice commands. Users can also use these voice commands for biometric authentication. The Turing Phone Cadenza features a 5.8-inch Quad HD display of 1440x2560 pixel resolution. It is powered by not one, but two Qualcomm Snapdragon 830 (even though the same hasn't been officially announced) CPUs paired with a an astonishing 12GB of RAM and 1TB of internal storage. The storage can be further expanded up to 500GB by installing a microSD card. The Cadenza runs Turing's own Swordfish OS with deep learning Artificial Intelligence (AI) features a 60MP rear camera with IMAX 6K recording facility and a 20MP dual-front camera. Users can install up to 4 sim cards in the smartphone and it houses a huge 100Wh battery with graphene and hydrogen fuel cells.  In related ne...

Export Doc,Access,Image,CSV,Excel,Pdf,XML,HTML,Text,Print of Gridview in Asp.net

First import itextsharp.dll in the solution and use three namespces (basically for pdf) using iTextSharp.text; using iTextSharp.text.pdf; using iTextSharp.text.html.simpleparser;          Then Use the following code :- on each button  click  protected void Page_Load(object sender, EventArgs e)         {             if (!Page.IsPostBack)             {                 BindGridDetails(GridView1);             }         }                 protected DataTable BindGridDetails(GridView GridView1)         {   ...