Thanks for your quick response. IE is my only concern, but it sounds as though even upgrading to IIS7 will not help. Hard to believe somebody at MS would think that 2048 bytes should be more than enough for anybody! My projects always seem to test the limits of the available technology, lucky me!
As to your suggestion of changing my transport mechanism, the page is being called from a link on a Summary report which is opening a Detail report, not with a postback. The QS contains filter information to tell the detail Report what to list. I know that's a hell of a lot of data to pass in the querystring, but nothing else would work. Session variables proved too unreliable (see
Session Variables Randomly Disappear? if you have an hour to read all the responses) and cookies are too small for my needs.
Barring any other solutions, I suppose I will have to write this data to a database record and pass the key in the QS instead. I am somewhat concerned that will impact performance, since it will have to write a record for each possible link, but slow is better than broken, I guess.
Thanks again!