I have been trying to cross-page post data that is created in a source page codefile to a target page that graphically displays that data. After much searching, it appears that the only type of data that can be cross-page posted is data that is associated with a source page control. IS THIS ACTUALLY THE CASE? OR IS THERE SOME WAY TO CROSS-PAGE POST DATA THAT IS NOT CONTAINED IN A SOURCE PAGE CONTROL.

I would also like to know if a table containing data qualifies as a control. I have experimented with setting data in a source page table, then attempting to cross-page post, but it is unclear to me how to use the table cell IDs and pair them with the cell 'values'. Since the data that I am interested in cross-page posting is float data, can such float data be posted as such, or must all data posted be of the String type?

I have used the following references for help on this matter:
For info on how to post from one ASP.NET page to another, see:
http://msdn.microsoft.com/en-us/library/ms178139.aspx
http://msdn.microsoft.com/en-us/library/ms178140.aspx

How to: Pass Values Between ASP.NET Web Pages
http://msdn.microsoft.com/en-us/library/6c3yckfw.aspx

But, as is so often the case, none of these provide a very detailed example and none deal with passing data that is not contained in a source page control.

Your help greatly appreciated.