mendhak
Jan 12th, 2005, 03:09 AM
I have an IFRAME on my page like this:
<iframe width="642" id="idContent" height="350"></iframe>
Underneath that, I have a submit button.
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:
Response.Write(Request("idContent"))
But that doesn't work.
Something tells me that the mechanism behind IFRAMEs is somewhat different. Any pointers would be appreciated. :)
<iframe width="642" id="idContent" height="350"></iframe>
Underneath that, I have a submit button.
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:
Response.Write(Request("idContent"))
But that doesn't work.
Something tells me that the mechanism behind IFRAMEs is somewhat different. Any pointers would be appreciated. :)