Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
229
the infamous "access denied" error image
posted

Hi all, i'm using infragistics ver 6.3 to generate webcharts(Infragistics2.WebUI.UltraWebChart.v6.3,

Version=6.3.20063.53 and UltraChart.DeploymentScenario.Scenario="Session"), and sometimes(extremely random), i get

the infamous "access denied" error image.

Then after a search, I read this kb:
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=2041

I've a mixed scenario with a pure asp page with four charts(generate them by calling aspx pages obiouvsly).
Then I try to turn every caching stuff off.

On pure asp page:
response.expires = -1500
response.AddHeader "PRAGMA", "NO-CACHE"
response.CacheControl = "PRIVATE"
response.Buffer=False

On asp.net pages(chart generating pages):
protected void Page_Load(object sender, System.EventArgs e)
        {
            Response.Expires = 0;
            Response.Cache.SetNoStore();
            Response.AppendHeader("Pragma", "no-cache");
            Response.Cache.SetCacheability(HttpCacheability.NoCache);


But still no luck...

Any suggestion?

Here are some addictional question:

1)
There is a way to inercept the "access denied image" via javascript before diplaying it?
I've seen that the output of a "good generated chart" is nearly the same of a "bad generated chart"
i.e.
<img style=''src='ImagePipe.aspx?ChartID=mychart_Base&KxRx=0x04813>

2)
There is a way to change the "acess denied" image with some sort of custom image/custom text?

3)
The last version of UltraWebChart(8.1.20081.1000) may solve the problem?

Thanks in advance

Parents Reply Children