Posted on: 5/18/2014 12:27:03 PM | Views : 491

Hello everyone, I need to invoke two webmethods on one dropdown list selected index changed. How can I do that? This is how I call the web method using jQuery.
$(function () { $('#<%=Dropdownlist1.ClientID%>').change(function () { $.ajax({ type: "POST", url: "test.aspx/testmethod1", ... }); }); I need to call another method that's is testmethod2. How can I do that because I am allowed to have only one url parameter, isn't it?
Thanks

Go to the complete details ...