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

Passing parameters to an ASP.NET page running in an IFRAME

By , 9 Feb 2004
 

Introduction

I am building a content management intranet for my company. The website is based on DotNetNuke, and uses the excellent FreeTextBox control in order to enter HTML into the articles. One of the best features of FreeTextBox is that you can easily add your own buttons and functionality to the control. For instance, the built-in function for adding images didn't meet my needs. My images are stored in SQL server, and require a custom src property in order to retrieve the image. No problem - I added a new button to the control, and built a small aspx page that opens in a modal (popup) window. The popup window allows the user to choose an image to insert, or upload a new image to be inserted. But that's where my problems began.

The Problem

If you've never tried to run an aspx page in a modal window before, then I've probably already lost your attention. But if you have, then you've most likely run into a rather odd problem. Just opening and running an aspx page in a modal window works fine, but if you need to do anything that causes a postback, a funny thing happens. The page opens up in a new window. Worse yet, the new window that opens doesn't have any of the data that you just submitted. The whole thing is a total wash. And JavaScript isn't terribly helpful. What to do?

Enter the IFrame

The trick to solving this problem is to wrap the aspx page in a "doorway" page. That is, you make another page that contains an <IFrame> tag with its source page set to your aspx page. The aspx page then behaves normally within the given frame. Here is an example:

<iframe src="Pages/multiforms.aspx" 
  name="embeddedFrame" width="100%" height="100%" />

Great! Ok, so chances are that at this point you are good to go. But there is one problem left - what if you (like I) needed to pass a parameter to the aspx page? In my example above, I needed to pass the article number of the page I was working on, so that the page I was calling would know which images to display. When calling the aspx page, I would do something like this:

http://www.myweb.com/selectimage.aspx?article=12345

But how do pass the parameters from the host page to the IFrame? Well, as the old saying goes, "You can't get there from here". Or can you?

The Solution

Enter the Literal control. That's the little friend that saves the day in this case. Here is how it works. First, create your doorway page (an aspx page) and drop a Literal control on it.

 ...
<form id="Form1" method="post" runat="server">
   <asp:Literal id="Literal1" runat="server"></asp:Literal>
</form>
 ...

In the code behind (or in the script section), load up the literal control with the IFrame tag, along with the parameters you need to pass:

Private Sub Page_Load(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles MyBase.Load
    Dim myURL As String = Request.Url.ToString() 'Get the URL
    'Does the URL contain parameters?
    Dim ParamStart As Integer = myURL.IndexOf("?") 
    'If the URL has parameters, then get them. If not, return a blank string 
    Dim Params As String = IIf(ParamStart > 0, _
      myURL.Substring(ParamStart, myURL.Length - ParamStart), String.Empty)
    If (Request.Params("Page") Is Nothing) _
              Or (Request.Params("Page") = "") Then
        'No page was specified to load in the IFrame, so let the user know
        Literal1.Text = "Error: No page was specified in the parameters."
    Else
        'Return the IFrame, and add the parameters 
        'to the called (src) web page
        Literal1.Text = "<IFRAME NAME='embeddedFrame'" & _ 
          " WIDTH='100%' HEIGHT='100%' SRC='" & _
          Request.Params("Page") & Params & "' />"
    End If
End Sub

The code above is pretty short and well documented, but here it is in a nutshell. We grab the URL passed to the "doorway" page. The "Page" parameter contains the name of the aspx page we wish to load into the IFrame. If there are any additional parameters, we get those and store them in a string called Params. Then, using the Literal control, we dynamically create an IFrame tag. The trick here is, now we can create the IFrame with a src value that contains not only the name of the aspx page we want to load in the IFrame, but we can also add the passed parameters to that page. Cool.

Calling The Page

Now that we have our doorway page, we easily call the aspx page needed, and pass it the necessary parameters, all in one shot. In the example above, I was attempting to call the selectimage.aspx page and pass it an article number. Now, in order to make that work, I do this:

http://www.myweb.com/doorway.aspx?Page=selectimage.aspx&Article=12345

Where To Go From Here

That's pretty much it, although there is room for tweaking left, depending on how thorough you'd like to be. For example, you could easily turn this code into a simple control that could be dropped on a page, or even turn it into a base page to be inherited from. Now that you know the trick, all of these things are rather simple to do, and I leave those options to you to explore in more depth. If you are concerned about passing query strings in plain text as above, there was an excellent article on using secure query strings here.

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

Todd Davis
Systems Engineer Virtual RadioLogic
United States United States
Member
Todd Davis has been working in web and application development for several years, using Silverlight, ASP.NET, VB.NET, C#, C++ and Javascript, as well as a great deal of work with SQL server and IIS.
 
He currently works for Virtual Radiologic in Eden Prairie, MN, however he is better known for his varied work in the open source community, especially the DotNetNuke project for which he provided several world-renowned training videos and modules. A huge advocate of open source and open knowledge sharing, everything on his website (www.SeaburyDesign.com) is always offered for free.
 
Whenever he is not actively coding at his laptop (a rarity to be sure), he can be found woodworking, walking with his wife and kids, or motoring along the back roads of MN on his Harley Davidson Fatboy.

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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberwinny8716 May '13 - 23:19 
lucid description for solution to a commonly faced problem
Questioniframe scroll eventmemberammiraju.t27 Feb '13 - 2:55 
Hi,
I am using iframe in my web application. i want to enable a button based on the iframe vertical scrollbar position.I tried with contentWindow.Scroll event of my iframe using javascript but couldn't. what will be correct way to handle this?
 
Regards,
Ammiraju
QuestionHelpmemberMember 867650724 Feb '12 - 23:47 
I have loaded a file using iframe. I need to edit and save the same online. How can i do that?
GeneralUsing Sessionmembersameerazazi876 Aug '10 - 14:03 
Cant we just use session for that?
 
just put a session in parent page Load event ... use this session value in frame page load event and immediately clear session.
 
what problem might occur in this approach?
GeneralRe: Using SessionmemberTodd Davis6 Aug '10 - 14:25 
No. What you need to remember is that an iFrame is essentially the same as opening a new browser. The page that is contained in the iFrame has no idea that it is in an iFrame. It has no idea that you already logged in somewhere else, it has no access to your session object (it will have it's own session) and, even if it did... what if the app you are calling is another application or even on another server? Or on a web farm (that isn't using SQL for session).
 
The problem is that you need some way to pass information into the iframe that it can expect and use.
-Todd Davis (toddhd@gmail.com)

GeneralRe: Using Sessionmembersameerazazi876 Aug '10 - 18:29 
Thank you devis,
 
This really helped me to understand iframe concept. i have actually used this session with iframe in one of my application.
but it is hosted on only one server so it is not giving any error i think. i will sure replace that code with the one you specified in this article.
 
thanks,
azazi
GeneralThanks!memberrax_s21 Nov '08 - 9:31 
Useful tip.
 
Thanks!
GeneralPassing Valuesmembermotasem1114 Aug '08 - 3:16 
Hi;
 
I need to know how to pass values between pages in ASP.Net when using one of the Navigator Tools
 
BR,
QuestionCustomise IFrame srcmemberzarana shah30 Jul '08 - 21:56 
Hi
i am facing the same problem which you mention here, i have to download inside the page of the website. i am passing username and password with the page link but i could not reach up to that page. i can see the login page of that site. when i run prepared url (which i have passed in src of IFrame) in browser than i can reach that page but not using IFrame.
 
if you have any solution then please reply me.
 
for ex. http://192.168.1.1/test/userinfo.aspc?username=aaa&pwd=aaa
i have to reach above url but when i pass this url to src property i will get http://192.168.1.1/test/login.aspx
 
Thanks
Zarana Shah.
Questionhimemberbunny.varun19 Apr '08 - 23:43 
hello
 
How can i set the login page as the default page in the browser. if the user writes the path for another page then he is redirected to the login page. how can i do that??
please help
 
Thank you
GeneralUse IFrame Control Attributes to set srcmemberpmannino28 Nov '07 - 10:58 
You can set the IFrame src attribute directly, without resorting to using the asp:literal control, as follows: embeddedFrame.Attributes("src")=Request.Params("Page") & Params
GeneralPlacing more than one iframemembercmrhema24 Aug '07 - 21:31 




Please Help
cmrhema
Hi,
I have designed a html table control in asp.net.
On one side of the columns I have hyperlink labels
1.Register
2. Change Password
3.dfdf
4.etc.
 
I have merged the cells of column no 2
I place an iframe in column 2
Now when I click register I want to the link to the respective iframe(and other iframes should not be visible) and so on for others.
I have designed an iframe,it(the iframe) is occupies the full page(merged columns).
Now I do not have space to design another iframe.
So i have to place so naturally I will place it above the iframe1.
This is ok. But I cannot make the layout static.
And if i use static the second iframe is placed below the first iframe.
 


<asp:HyperLink ID="HyperLink2" runat="server" ForeColor="Black" Style="position: static" NavigateUrl="Home.aspx" Target="Home">Home

<iframe id="Home" src ="Home.aspx" name="Home" scrolling="auto"style="position: absolute; height: 432px; width: 713px; z-index: 100; left: 220px; top: 111px;"></iframe>

GeneralIFrame in ASP.NETmemberThe Knowledge25 Jul '07 - 2:55 
Hello Everyone,
 
Can anybody let me know wht features are provided by "iframe" control
How great it is in using to dynamic work
 

 
Thnx in Advance
GeneralUsing this inside DNN to embed ASP.NET E-mailmemberKashar20 Jul '07 - 5:53 
Greetings,
 
Is there any effective way to pass a SMTP server data to a embeded control inside a I-frame?
GeneralRe: Using this inside DNN to embed ASP.NET E-mailmemberTodd Davis20 Jul '07 - 7:17 
Personally I'd setup a web service and have the embedded control respond to that. Have the hosting page pass the data to the web service instead trying to pass it as a parameter through to the iframe page.
 
-Todd Davis (toddhd@gmail.com)

QuestionGetting Parameters from an IFramememberestrga18 Jul '07 - 4:29 
I'm looking for help on Getting parameters data from an IFrame.
 
I need my corporate web Header to be the same for all the VB.NET projects. I need to use iFrames to put the header on each page.
 
In the header there are some Links that opens on the body, How can I pass the actions and parameters from the iFrame (header) to the main page?
 
TIA
 
Gabriel Estrada

AnswerRe: Getting Parameters from an IFramememberTodd Davis18 Jul '07 - 4:44 
First, I have to remark that I've never heard of a web header being placed in an IFRAME, and it doesn't sound like you are taking the right approach to what you are doing. Shouldn't it just be in a FRAME, as opposed to an IFRAME?
 
Anyway, assuming you have a reason to do things that way, you are going to have a tough time accomplishing this I think. At the end of the day, an IFRAME is essentially a "browser within a browser", so the page it is looking at is unaware of the hosting page.
 
If you needed for the body to interact with the header, that would be one thing - you could do an ajax call to a webservice and pull the content back that you need. But since you are clicking on something in the header (which is a seperate page unaware of the host), the only way I can think of is to have the header page "push" some response out that the hosting page and monitor and respond to (think RSS feed). And that's not a great solution because the hosting page would to be constantly hammering away at the header page in order to get the updates in a timely fashion.
 
Can't say I've ever tried it, and maybe there is something akin to a reverse-ajax call that would pull this off, but I stick by my original statement that putting a header page in an IFRAME is probably a Bad Idea(tm) on all accounts.
 
Best of luck
 

 
-Todd Davis (toddhd@gmail.com)

GeneralRe: Getting Parameters from an IFramememberestrga18 Jul '07 - 5:00 
Well...
 
I'm using VB.net/ASP.net in VS 2003.
 
I need to copy/duplicate the header control (.ascx) and embed it in each aspx. That's why I'm thinking in iFrames, and left only one header.ascx (or header.aspx) in a common folder and access it from every page.
 
Also I thought in the Push issue but I can't figure how to do it yet.
 
Thanks

 
Gabriel Estrada
GeneralLiteral Controlmemberpganathe3 Apr '07 - 20:25 
Hi Todd Davis,
This is a one of the very good example to solve that postback,big window problem.
Similarly i had one more problem, new page have a TextBox and a Button.
The user has to enter the text in that and then click the button(server control).
 
private void Button_clicked(object sender, CommandEventArgs e)
{
//Some Business Logic code.
Close the page
}
 
How can i close the page(pop-up one)in server side click event after executing business logic code.
 


 
Prashanth Kumar G.
Software Engineer
Bangalore

GeneralRe: Literal Controlmemberparama dharmika15 May '07 - 4:01 
You can use javascript,
place a label on your page whereever you may choose Big Grin | :-D , simply visible false then. create a javascript function to close the pop up window, and then place the text with the function of javascript that you just have made.
 
happy coding to all ...Smile | :)
 

 

GeneralRe: Literal Controlmemberpganathe15 May '07 - 19:39 
Hi parama dharmika,
Thank you very much for the solution.But i am not allowed to use javascript,
in server side coding only i need to do this. Is there any way to close the page
by server side code.
 
Prashanth Kumar G.
Software Engineer
Mauritius

Questionhow can set the height of iframmemberMember #156050216 Feb '07 - 20:53 
Does anyway to Set the iframe's Height 100%.
i need to create dynamicaly 'n' no of Chart Control. the page open in iframe how can i maange iframe's height base on no of charts loaded.
 
case is i have Default.aspx page. that contains usercontrols, each usercontrol contains' iframe src of chart.aspx.
in chart.aspx dynamically load usercontrol's which use to create Chart object.
 
the Decision of how meany charts are loaded in is Chart.aspx.
but the height of iframe's need to set in default page.
 
how can i set the height of iframe
 
Mian
GeneralThanksmember.NETWannabe25 Oct '06 - 5:03 
This solved a problem for me!Smile | :)
 
.Net Wannabe

QuestionHow to make this ATLAS enabled?memberDsypher18 Jul '06 - 8:08 
Hi,
 
I was wondering if we can perform a postback with the help of the Atlas UpdatePanel control and pass the parameters to the Iframe using the literal. Lets say I have two buttons on my page called "Guides" and "Contact Me". If I click on the "Guides" button, my Guides.aspx page would be loaded into the IFrame and so on.
 
Any sorta help would be greatly appreciated.
 
--------------------------------------------------------
Be nice to geeks. You might end up working for one. Wink | ;)
Generalbase targetmembershubie29 Sep '05 - 15:13 
How about just putting the basetarget property to _self in the head element of the page you are posting back in a modal, this prevents the page in the modal window opening in a new window.

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 10 Feb 2004
Article Copyright 2004 by Todd Davis
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid