You must Sign In to post a response.
  • Category: ASP.NET

    How to Bind Records From Database by Selected Value of DropDown , Do not Reload the Page

    hi Developers ,

    i am creating a project now i want to ,

    Bind Records From Database by Selected Value of DropDown ,
    Without Reload the Page .
    when i select the any value of DropDown the Records will automatically bind from Database w

    i am also trying but still i did not get a Exact output.
    so if anyone know how to finish this task please suggest me

    thanks with
    Paul.S
  • #769306
    Why can not you try the JQuery Ajax call.
    In the success you can do something like following


    success : function(data){
    $.each(data, function(index, elem){
    $.each(elem, function(key,value){
    $('select#rest').append('<option value="'+key+'">"'+value+'"</option>');
    });
    });
    }


    By Nathan
    Direction is important than speed


  • Sign In to post your comments