Click here to Skip to main content
Click here to Skip to main content

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

By , 25 Mar 2003
 

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

<%@ 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

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

About the Author

Hugo Flores
Web Developer
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralThanks! But in FireFox a little bit different...memberEnigmatic22 Jan '09 - 0:44 
QuestionHow to display an html file inside Iframe --need urgent helpmemberVishnu Narayan Mishra15 Nov '07 - 19:00 
Questionhow to dynamically refresh iframe when hosting through IISmembernaresh26929 Oct '07 - 23:01 
GeneralReceiving NothingmemberThe Knowledge8 Sep '07 - 4:34 
GeneralC#memberManhhm2 Apr '06 - 18:31 
GeneralRe: C#memberHugo Flores11 Apr '06 - 6:43 
GeneralEmpty String, doesn't work.memberbswiftly14 Sep '04 - 4:10 
GeneralRe: Empty String, doesn't work.memberHugo Flores14 Sep '04 - 4:31 
This is supposed to be a very simple solution, you have an iframe, a hidden field, and a .NET web button. At page load you add javascript code, so when you click on the button, you get the html source code into the hidden field, and then on the server side you set the string to whatever the hidden field has.
About your other solution I can't really help you much there as I've never done it that way. But it could help if you posted the code that is not working for you based on this article.
 
Cheers Smile | :)
 
It's not why you're running, it's where your going
It's not what you're dreaming , but what you're going to do
It's not where you're born, it's where you belong
It's not how weak but what will make you strong
GeneralRe: Empty String, doesn't work.memberbswiftly14 Sep '04 - 4:46 
GeneralRe: Empty String, doesn't work.memberHugo Flores14 Sep '04 - 5:38 
GeneralRe: Empty String, doesn't work.memberbswiftly14 Sep '04 - 8:46 
GeneralRe: Empty String, doesn't work.memberbswiftly14 Sep '04 - 8:54 
GeneralRe: Empty String, doesn't work.memberHugo Flores14 Sep '04 - 9:43 
GeneralRe: Empty String, doesn't work.memberHugo Flores14 Sep '04 - 9:38 
GeneralRe: Empty String, doesn't work.memberbswiftly14 Sep '04 - 9:50 
GeneralRe: Empty String, doesn't work.memberbswiftly14 Sep '04 - 14:45 
GeneralRe: Empty String, doesn't work.memberHugo Flores15 Sep '04 - 1:31 
GeneralRe: Empty String, doesn't work.memberbswiftly15 Sep '04 - 3:35 
GeneralRe: Access Deniedmemberbswiftly15 Sep '04 - 12:12 
GeneralRe: Access DeniedmemberHugo Flores16 Sep '04 - 2:50 
GeneralRe: Access Deniedmemberbswiftly16 Sep '04 - 12:05 
GeneralDoes Not Accept Formatting of TextsussL anthony Johnson20 Nov '03 - 10:08 
QuestionAnd what about putting source on an IFrame?memberNuno Ferro9 Sep '03 - 7:04 
AnswerRe: And what about putting source on an IFrame?memberHugo Flores9 Sep '03 - 7:17 
GeneralRe: And what about putting source on an IFrame?memberNuno Ferro9 Sep '03 - 7:36 
GeneralRe: And what about putting source on an IFrame?memberHugo Flores9 Sep '03 - 7:52 
GeneralThis way worksmemberNuno Ferro9 Sep '03 - 23:55 
Generalproblemmemberdebam17 Jul '03 - 8:10 
GeneralRe: problemmemberHugo Flores17 Jul '03 - 8:25 
QuestionWhat about the other ways to do this?membertheJazzyBrain18 Apr '03 - 0:51 
AnswerRe: What about the other ways to do this?memberwhatkoist14 Dec '03 - 22:42 
Generaliframe deprecatedmemberRui "viZual" Lopes26 Mar '03 - 5:41 
GeneralRe: iframe deprecatedmemberJörgen Sigvardsson26 Mar '03 - 8:45 
GeneralRe: iframe deprecatedmemberNo Brayn R1 Apr '03 - 1:35 
GeneralRe: iframe deprecatedmemberJörgen Sigvardsson1 Apr '03 - 1:38 
GeneralRe: iframe deprecatedmemberNo Brayn R1 Apr '03 - 2:22 
GeneralRe: iframe deprecatedmemberJörgen Sigvardsson1 Apr '03 - 2:33 
GeneralRe: iframe deprecatedmemberhugoboss1 Apr '03 - 2:34 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 26 Mar 2003
Article Copyright 2003 by Hugo Flores
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid