Re: PageLink got disabled when URL get too long

2007-06-27 Thread Jesse Kuhnert
Probably because of limits on the amount of data you are allowed to encode in GET requests. (specifically I think IE has this issue with something around 4k or so ) You'll have to either use a smarter DataSqueezer to encode smaller versions of your lists or just store less data somehow. Most pe

PageLink got disabled when URL get too long

2007-06-27 Thread Ajit Raj
Hi, I have a page that stores ( @Persist("client") ) two lists, for example -- a state list, and a city in that state list. The city list could be updated if the state selection is changed. So, I use @Persist("client") to store the lists. I also have a PageLink linking to other page. I found