I have an asp page that creates a chart, and the page with the actual chart, we'll call page1.asp, sends a string to the chart creation page (I call the data page) like so:
strDataURL3 = Server.URLEncode("reddata.asp?date1=" & request("date1") & "&date2=" & request("date2") )
The data page creates some session values, so the page1.asp page can get that data and use it.
Problem is, passing sessions between these two pages doesn't seem to work for some reason....
Does anyone know what might be the problem?
Thanks!