In a SharePoint site page i'm displaying some IIS hosted ASP.NET web pages by using an iFrame(created by using CDATA tag in Content Editor Web Part). In my SharePoint site page i wrote a javascript function to return some value and to append the returned value as a query string in the src atrribute of that iframe.
Here i am perfectly able to change the src attribute of iFrame. But the problem is sometimes the ASP.NET pages that are being displayed by a different query string parameters being append to their page urls. I came to know that these wrong values are nothing but the returned values of a user who accessed the SharePoint site page simultaneously even i though the src attribute of iFrame is pointing correct url with exact query string parameters.
So i thought either the iFrame is being cached or in between the gap of javascript function execution to form src of iframe and to load the content with pointing to the formed url somehow the content page is being loaded with wrong url which doesn't make any sense. I am unable to find out the issue. Can someone guide me in this issue.Thanks in Advance