Response title
This is preview!




class jsonReturn { public int value { get; set; } public string label { get; set; } } @Html.HiddenFor(m => m.SupplierTypeID) @Html.TextBoxFor(m => m.SupplierBranchName) @Html.HiddenFor(m => m.SupplierID) <script> $("#SupplierBranchName") .autocomplete({ source: function (request, response) { $.getJSON('@Url.Action("SupplierSearch")', { term: request.term, supplierTypeID: $('#SupplierTypeID').val() }, response ) } }); </Script> © 2012 jQuery Foundation
Sponsored by
and others.
