I am having a simple Azure cloud app(WebRole=ASP.Net MVC) which draws charts using ASP.Net Charting control.
Specifications-->
- Chart RenderType = ImageMap
- Chart ImageLocation = "/Images/Chart_#SEQ(1000,1)"
- Number of app instances deployed on Windows Azure = 5
- App contains a button which draws charts as per users parameters. When user clicks on this button, MVC action is called which provides necessary ViewData for drawing chart and returns a partial view which after getting rendered sends ImageMap and Image location to client.
When I try to draw charts from IE8 I always get the charts as per my parameters but when I simulataneously try to draw charts on FireFox sometimes I get wrong charts(wrong images).
Is is due to roundrobin used - #SEQ(1000,1) or due to mutiple instances of my cloud app ?
Thanks,
Kushal