C
computer_guy
Hi Everyone,
I am writing an HTMP page like below:
---------------Dynamic HTML Page report.aspx-----------------------
1. Complicated algorithm to generate data and store it in memory
2. Inline Image to visualize generated data in graphic format.
<img id="ss_img" src="Charting.ashx?data=<Large Block of Data
Generated
(~ 32 KB - 512KB) > />
3. HTML table to visualize data generated in #1 in tabluar format.
----------------------End of HTML
Page-----------------------------------
My problem is that report.aspx has to pass a lot of data to
charting.ashx, so much that it cannot be passed into Chart.apsx with
HTTP GET. I don't think you can do HTTP POST on the <img> tag. I am
thinking to store the data to a temp file and pass the file name in
(<img src="Charting.ashx?tempfile=...">), but this is messy and it is
a problem to clear temp files.
Thanks a lot,
computer_guy
P.S. This is a refined version of a related message I posted yesterday
on this group. Yesterday's message was way too unclear. I apologize if
you have already read the previous message and was able to infer I
meant the same thing.
I am writing an HTMP page like below:
---------------Dynamic HTML Page report.aspx-----------------------
1. Complicated algorithm to generate data and store it in memory
2. Inline Image to visualize generated data in graphic format.
<img id="ss_img" src="Charting.ashx?data=<Large Block of Data
Generated
(~ 32 KB - 512KB) > />
3. HTML table to visualize data generated in #1 in tabluar format.
----------------------End of HTML
Page-----------------------------------
My problem is that report.aspx has to pass a lot of data to
charting.ashx, so much that it cannot be passed into Chart.apsx with
HTTP GET. I don't think you can do HTTP POST on the <img> tag. I am
thinking to store the data to a temp file and pass the file name in
(<img src="Charting.ashx?tempfile=...">), but this is messy and it is
a problem to clear temp files.
Thanks a lot,
computer_guy
P.S. This is a refined version of a related message I posted yesterday
on this group. Yesterday's message was way too unclear. I apologize if
you have already read the previous message and was able to infer I
meant the same thing.