Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsIFrameIFrameUsing QuerystringUsing Querystring
Previous
 
Next
New Post
3/2/2008 8:07 AM
 

Hello.

I have a page on DNN the uses IFRAME.

I want the IFRAME to add querystring to the src, but the parameter will be from another Module (Links for example).

In simple word, when a user press a link from Side pane, The Content pane (With the IFRAME) will open a source with querystring.

For example, if a user press "setup" link, the IFRAME shold direct to www.somelink.com?qry=setup

 

How can it be done?

 
New Post
3/2/2008 3:04 PM
 

Hello.

What you are looking to do is actually impossible to achieve without custom javascript code. Below, you will find a simple example of how it can be done. Every link you have will need to call the javascript function, passing a url to it. Please, let me know if you have additional questions.

<html>
<head>
<script type="text/javascript">

function DoIframe(url_)
{
 var obj = document.getElementsByTagName("IFRAME")[0];
 obj.src=url_;
 return false;
}

</script>
</head>
<body>
<a href="#" onclick="DoIframe('http://www.yahoo.com'); return false;">Try it out</a><br /><br />
<a href="#" onclick="DoIframe('http://www.google.com'); return false;">Try it out</a><br /><br />
<a href="#" onclick="DoIframe('http://www.dotnetnuke.com'); return false;">Try it out</a><br /><br />
<a href="#" onclick="DoIframe('http://marketplace.dotnetnuke.com'); return false;">Try it out</a><br /><br />
<a href="#" onclick="DoIframe('http://www.snowcovered.com'); return false;">Try it out</a><br /><br />
<IFRAME width="600" height="600" />
</body>
</html>


Vitaly Kozadayev
Principal
Viva Portals, L.L.C.
 
New Post
4/4/2008 9:01 PM
 
Hello, Is there a way to achieve the same results without using javascript as I would like to avoid problems with client pc's that have javascript disabled. Thanks
 
New Post
4/5/2008 6:42 AM
 

I f client pc's have javascript diasabled, they are going to run into much more trouble then just iframe. For instance disable js and go to dotnetnuke.com, try to navigate (menu is gone) or try to login... 

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsIFrameIFrameUsing QuerystringUsing Querystring


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out