Pass a parameter to server method using JavaScript
I have a public in my code behind page that takes a string. I would like to call this method from javascript. The parameter that I want to pass down is variable that changes from a ddl. So I have something like this: var value = document.getElementById('ddlContact').value; <%=PopulateContactFields("value") %> This p...