Hi John!I think you will get the same behavior if you get rid the ids, I mean, what is important in saveState is the value attribute. The way I use saveState, for instance to preserve myBean state, from page1.jsp to page2.jsp is as follows:
<t:saveState value="#{myBean}"/> in page1.jsp
and
<t:saveState value="#{myBean}"/> in page2.jsp
where myBean is a managed bean and there's a request from page1.jsp to
page2.jsp
I hope it helps. JuanCarlos

