I am trying to do an HTTP GET from my website to another website that runs through an iframe.
In Firefox, you can see in the source that the correct url is in the iframe src along with its correct parameters - and it works.
In IE, you can see in the source that the correct url is in the iframe src along with its correct parameters - and it does not work ...
Is there something in IE that doesn't allow passing parameters via iframe to querystring?
I tried updating the iframe in IE, I tried updating my page and the iframe in IE, and I tried to copy the url and paste it again in the iframe src (making it refresh as if I just entered it in the address bar for this iframe) . Not lucky yet!
Does anyone know why this is happening, or are there any suggestions to try to get around this?
Edit: I cannot give a link to this because the site requires a password and credentials to enter our site and our supplier’s site. Despite the fact that I could make a test account on our site, it would not be useful for the testing process, because I can not do the same for the supplier’s site. As for the code, all it does is create an src from the backend code on the page load and set the src attribute from the back ...
//Backend code to set src
mainIframe.Attributes["src"] = srcWeJustCreated;
//Front end iframe code
<iframe id="mainIframe" runat="server" />
Edit: The problem has not been resolved. Auto response accepted because it has expired. I will re-ask this question with additional information and a link to the page when our site is closer to life.
,
Matt