Sending parameters in ajax request
suppose i have 100 parameters to send in an ajax request how can i send that, is there any mehcanisam for that?Thanks,
# 1
If you are doing a post, you will have no problems, because a post request doesn' have limits. When using AJAX to post request this parameters are passed thru the querystring. http://developer.mozilla.org/en/docs/AJAX:Getting_StartedMeTitus