Okay. I'll try this again. I didn't get very far over here. I'm very new to ajax and jQuery.
in an attempt to even see if I can obtain the filerValues on the server but to no avail. In addition, I do Not want to use asmx pages, so I guess I cannot use web methods.
I'm just trying to obtain the post URL with the appropriate checked values so I can parse it on the server. Every time I check a checkbox, it should send all checked values to the server. However, I'm having trouble obtaining the URL. The filterValues is supposed to hold a query string like name=value&name=value&name.... and it does show that in the payload when I am running the Developer's Console. It is indeed posting the correct data. but when I test if I can access it on the server, it keeps hitting the error function in ajax. I'm using web forms app, not MVC and not asmx pages. Also, I'm new to ajax and their behavior. Thanks.
EDIT:
I have figured out the solution. It turns out that I needed to post Form Data, and not any other kind of payload.