Click here to Skip to main content
15,881,882 members
Articles / Web Development / ASP.NET
Article

How to get the HTML source code from an editable Iframe, on the server.

Rate me:
Please Sign up or sign in to vote.
3.44/5 (13 votes)
25 Mar 20031 min read 185.8K   29   38
Getting the HTML source code from an editable Iframe, on the server

Introduction

There are some times when you want to obtain the HTML source code from an editable Iframe, on the server side of the world, and this article gives a very simple example of that.

The ASP.NET form

ASP.NET
<%@ Page Language="vb" AutoEventWireup="false" 
                Codebehind="test.aspx.vb" Inherits="test"%>
<form id=frmMain method=post runat="server">
    <iframe id=ifrHTML name=ifrHTML runat="server"></iframe>
    <asp:Button id=cmdSend runat="server" Text="Send"></asp:Button>
    <input type=hidden name=hidValue>
</form>
<script>
    //Set the IFRame to Desing Mode.
    ifrHTML.document.designMode = "on";            
</script>

As you can see from the code above we have the Iframe, a submit button, and a hidden field.

We will need the hidden field to store the value of the innerHTML value of the Iframe in the client side, so we can submit later the hidden field into the server side code.

CodeBehind

VB
Private Sub Page_Load(ByVal sender As System.Object, _
        ByVal e As System.EventArgs) Handles MyBase.Load
    cmdSubmit.Attributes.Add("onClick", _
       "document.frmMain.hidValue.value = ifrHTML.document.body.innerHTML;")
End Sub

Private Sub cmdSubmit_Click(ByVal sender As System.Object,_
     ByVal e As System.EventArgs) Handles cmdSubmit.Click
    Dim strValue As String

    strValue = Request.Form("hidValue")
End Sub

First we'll take a look at the Page_Load function. As you can see there's just a simple attribute addition to the cmdSubmit button. We added the onClick event, so whenever the user clicks this button, the value of the HTML source within the editable Iframe, will be stored on the hidden field hidValue.

Now the cmdSubmit_Click event. Here's where we actually get the HTML source that the Iframe passed to the hidden field on the client side, and we get it by a simple Request.Form of the hidden field, and store it into the string variable strValue.

That's it, you now have the HTML source code of an editable Iframe into a string variable on the server.

Conclusion

There are many ways of storing the HTML source code of an Iframe into the server side, this is just one of them. I hope you find it useful.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: And what about putting source on an IFrame? Pin
Hugo Flores9-Sep-03 7:52
Hugo Flores9-Sep-03 7:52 
GeneralThis way works Pin
Nuno Ferro9-Sep-03 23:55
Nuno Ferro9-Sep-03 23:55 
Generalproblem Pin
debam17-Jul-03 8:10
debam17-Jul-03 8:10 
GeneralRe: problem Pin
Hugo Flores17-Jul-03 8:25
Hugo Flores17-Jul-03 8:25 
QuestionWhat about the other ways to do this? Pin
theJazzyBrain18-Apr-03 0:51
theJazzyBrain18-Apr-03 0:51 
AnswerRe: What about the other ways to do this? Pin
whatkoist14-Dec-03 22:42
whatkoist14-Dec-03 22:42 
Generaliframe deprecated Pin
Rui Dias Lopes26-Mar-03 5:41
Rui Dias Lopes26-Mar-03 5:41 
GeneralRe: iframe deprecated Pin
Jörgen Sigvardsson26-Mar-03 8:45
Jörgen Sigvardsson26-Mar-03 8:45 
GeneralRe: iframe deprecated Pin
No Brayn R1-Apr-03 1:35
No Brayn R1-Apr-03 1:35 
GeneralRe: iframe deprecated Pin
Jörgen Sigvardsson1-Apr-03 1:38
Jörgen Sigvardsson1-Apr-03 1:38 
GeneralRe: iframe deprecated Pin
No Brayn R1-Apr-03 2:22
No Brayn R1-Apr-03 2:22 
GeneralRe: iframe deprecated Pin
Jörgen Sigvardsson1-Apr-03 2:33
Jörgen Sigvardsson1-Apr-03 2:33 
GeneralRe: iframe deprecated Pin
Hugo Flores1-Apr-03 2:34
Hugo Flores1-Apr-03 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.