I have the following JQuery code;
var selectedval = $("#PaymentApplication_System").val();
var text = $("#btnSave").val();
var payVal = $("#PaymentApplication_Amount").val();
var dbobj = [{ param: text, value: payVal}];
var jlist = $.toJSON(dbobj);
which gives me the following json object;
[{"param":"Update Payment","value":"50.00"}]
I am using MVC 2. how do I read the values from the object in my controller???