Hello,
I have a 2D array of doubles in my Default class on my Default.aspx.cs page, like so:
protected Double[,] time;
By the time the page loads, I have populated this array from a database. Now, I want to reference this array in another file (Diff.aspx.cs) to avoid visiting the database again. Also, the data is used in a read-only fashion.
EDIT: There were some helpful links below. I have decided to attempt the hidden querystring/parse method. If anyone has a more straightforward answer, please suggest it. Thanks to everyone who wrote :D