vote up 0 vote down star

This may be a security issue...

I have an IFrame on my page w/ an .ashx src. The handler does something like

context.Response.ContentType = "text/html";
context.Response.Write(@"hello world");

If I navigate to the handler directly in a new browser window I see the "hello world"

If I try to open the handler in the IFrame it fails on IE. The handler is invoked but the response is refused.

It works fine in FireFox.

edit: if I change the IFrame src to be an aspx page it works fine

flag

Try with an context.Response.End(); at the end, also comment the context.Response.ContentType = "text/html"; – pixel3cs Jun 11 at 15:38
Tried you suggestions w/ same results. – summergoat Jun 11 at 15:54
More debugging reveals the issue is related to a single <input type='file'> element being the sole content of the form and not accessing any of the context.Request properties in the handler. Occasionally the page would load in IE... smells like a timing bug which is resolved by accessing the Request object. – summergoat Jun 11 at 16:52

2 Answers

vote up 0 vote down

We do a similar thing in our appliation. We have an IFrame with an html page as the source, and then in the html page the "action" of the form points to a handler. Maybe if you post more of a sample of what you are doing, it could be of greater help.

link|flag
vote up 0 vote down

Are the two pages (the container and the iframe) on the same URL? If not, IE may be doing something to block it as a prevention against XSS.

link|flag
The domain of the urls are the same. – summergoat Jun 11 at 15:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.