vote up 1 vote down star

Is there any way to update one of these charts asynchronously besides calling Chart1.SaveImage() and sending the image URL to the client-side?

flag

60% accept rate
So the chart is developed on the server-side, is the client making a request, or is it just being pushed over to the client from the server, for the update? – James Black Oct 24 at 1:36

1 Answer

vote up 1 vote down

If you use javascript the browser can ask if there is an update to the chart, and if there is, it could just change the url for the image, by changing the datetime on it:

<img src=myimage.aspx?datetime=884733 />

This would then get the latest chart as you send the data directly to the image tag.

This would enable the server to decide if a new image should be generated, or to use the already created one. You could also add some user info such as the current date/time to the chart before sending it out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.