For first time, I came across situation when I tried to pass really big parameter inside JavaScript function and I knew that there is limit on the length of the parameter passed to a JavaScript function!
You can’t pass a parameter bigger in length than that to the function.
hey, i also came across the same situation today…
can you tell me how did you get around that problem
one solution comes to mind is split the text and send two parameters
but i m hoping there is a better way
so please do let me know if there is a better solution
(you can send the reply to my email if you can.. Please)
Thanks
There are 2 options in thins case – either already save javascript result for those long params on resulting page implicitly instead of passing them and use them when needed from those hidden fields or use ajax for processing those long params (there are multiple options in this case).