Hi,
I am using a number of gauges in a dashboard set up (asp.net 2.0, IGv8.1) and occasionally a gauge will not show up when the page loads. If I refresh the page the gauge then shows. My deployment scenario is as follows:
UltraGauge1.DeploymentScenario.ImageType = GaugeImageType.Png; UltraGauge1.DeploymentScenario.DeleteOldImages = true; UltraGauge1.DeploymentScenario.Mode = ImageDeploymentMode.FileSystem; UltraGauge1.DeploymentScenario.ImageURL = "~/images/SalesForce/Gauges/TargetKpi/Gauge_#CLIENT_#SESSION.#EXT"; UltraGauge1.DeploymentScenario.FilePath = "~/images/SalesForce/Gauges/TargetKpi";
The image url on the initial page load is:
http://localhost:4004/BlueCow/images/SalesForce/Gauges/TargetPax/Gauge_ctl00_cphMaster_tpgNational_UltraGauge1_nfctuj45qfghidy0xik0ds55.png?t=128709199775304415
And then when I refresh the page it is:
http://localhost:4004/BlueCow/images/SalesForce/Gauges/TargetPax/Gauge_ctl00_cphMaster_tpgNational_UltraGauge1_nfctuj45qfghidy0xik0ds55.png?t=128709201323972827
You can see how the timestamp (I'm guessing that's what "t" is) has changed slightly. This behaviour happens both locally, and when my site is deployed on a server. I'd say about 95% of the time the gauge image appears correctly, and the other 5% I need to refresh the page. I don't think an image has ever failed to load for me on refreshing.
Any help on this would be greatly appreciated.
Cheers,
James.
red highlighted is my session id so that can be removed please suggest on previous post
The name of gauge is too long can it be the reason for this, Can i remove the below red highlighted text from the image name
I am getting missing images, these are copied into the filesystem when browse form direct URL then these images displays,
Below is the grid where dymanically createg gauge control displays
You should be fine with those assemblies. Are you getting missing images or duplicate ones? What happens when you directly browse to the url which shows up as a broken image link? Are the images being copied to your file system at all?
I am using the file system based image deployment,is there any thing i can change into the code which will resolve the issue?, below are the assemblies i am using,
Infragistics2.WebUI.UltraWebGauge.v11.2Infragistics2.WebUI.Shared.v11.2
And i am creating the gauge control dynamically
Infragistics.WebUI.UltraWebGauge.
UltraGauge ultraGauge1 =new Infragistics.WebUI.UltraWebGauge.UltraGauge();ultraGauge1.ID = id;
Regards
Anurag Sharma