I am using Jqueryui framedialog widget to call another aspx page within the jquery dialog.
Generally it works fine.
Now I have a requirement to pass some huge data to the child page from the parent page and access the data in the client side of the child page. I do not want to use query string.
Is there any way to achieve this?
I was using
var arg = { self:window, method:self.UpdateProgressBar };
window.showModalDialog(exportUrl, arg, EXPORT_INTERMEDIATE_PAGE_STYLE);
Now i am using jquery framedialog pluggin to show the exporturl.
I want to pass the arg parameter t the child page.
UpdateProgressBar - is a method in the parent page.
Please help !!!
Bookmarks