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

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)         {   ...

10 home remedies for acidity that really work!

All of us have suffered from acidity at some point in our lives. Either it is that extra  gulab jamun  at a family function or that spicy  samosa  during tea break. Whatever the reason may be, acidity can be quite an uncomfortable experience, and sometimes we are left with no option but to reach out for that bottle of antacid. But, did you know that there are alternative, n                        atural remedies that work just as well and don’t leave you with the ill-effects of too much medication? Read about the  new-age technique to relieve the symptoms of acidity .  Here are 10 things to treat acidity and its recurrence at bay:   Bananas : Are high in potassium which is an alkalizing mineral that has a high pH value. The higher the pH value, the lower the acidity, which is  why the banana is a formidable antidote for acidity. They also have a component that makes the stomach...