I know that I can call a page method with jquery using the following syntax
$.ajax({
type: \"POST\",
url: \"Default.aspx/GetDate\",
data: \"{}\",
con
What about creating the method on the .aspx page that does what it needs to with the information from the control? I know people go back and fourth on what controls are supposed to contain or not contain, but if the control only contains properties and objects, I would think having the function in the .aspx page could work for you. Obviously there would be many trade-offs.