I have an IFRAME on my page like this:
Underneath that, I have a submit button.Code:<iframe width="642" id="idContent" height="350"></iframe>
The user can paste anything into this IFRAME which will most likely be in HTML format. I would like to know how I can access what has been pasted into the IFRAME when submitting, so that I can save it to a database.
I don't know how to access the contents though, I've tried this:
But that doesn't work.Code:Response.Write(Request("idContent"))
Something tells me that the mechanism behind IFRAMEs is somewhat different. Any pointers would be appreciated.![]()




Reply With Quote