I m in a situation where i need to pass a larger number of values but without using POST
I can not use POST because when clicked on Browser back button sometime I get 'Webpage has expired'.
To overcome this i took help of Cookies like this
AppFrame.setCookie("EmailInvoiceIds", ids.join(','), 1);
window.location = "?isEmail=true&eid=1&template=2+"/#/customer/email";
Then in other Jquery i get cookies data like this
var emailInvoiceIds = AppFrame.getCookie("EmailInvoiceIds");
but this get flopped when data size increases 4K limit of cookie
So is there any other way i can pass large data values without using POST
Please suggest