<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Passing values between webpages' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Passing values between webpages' posted on the 'HTML &amp; WEB-Design' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 06:48:54 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 06:48:54 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Passing values between webpages</title>
      <link>http://www.programmersheaven.com/mb/html/426765/426765/passing-values-between-webpages/</link>
      <description>Hi, Im new to Web design, now im creating a web site I need to pass a name on one page to another page by clicking a button on the 1st page.&lt;br /&gt;
&lt;br /&gt;
sample&lt;br /&gt;
&lt;br /&gt;
PageA.html (when user click a button) the text "Booking is ready" should fill text field on the pageB.html page. &lt;br /&gt;
&lt;br /&gt;
Could any one help me to do this. My domain not support Asp.net.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/html/426765/426765/passing-values-between-webpages/</guid>
      <pubDate>Tue, 10 Jan 2012 04:41:28 -0700</pubDate>
      <category>HTML &amp; WEB-Design</category>
    </item>
    <item>
      <title>Re: Passing values between webpages</title>
      <link>http://www.programmersheaven.com/mb/html/426765/426766/re-passing-values-between-webpages/#426766</link>
      <description>For example, this way:&lt;br /&gt;
&lt;br /&gt;
PageA.html&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;PageA.html&amp;lt;/title&amp;gt;
    &amp;lt;script&amp;gt;
    function fnPass()
    {
      var otext;

      otext=document.getElementById('idTextToPass');
      location.href='PageB.html?texttopass='+otext.value
;
    }
    &amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    Text to Pass: &amp;lt;input type='text' id='idTextToPass'/&amp;gt;&amp;lt;br/&amp;gt;
    &amp;lt;input type='button' value='Pass' onclick='fnPass();'/&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
PageB.html&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;PageB.html&amp;lt;/title&amp;gt;
    &amp;lt;script&amp;gt;
    function fnOL()
    {
      var nc;
      var stext;
      var otext;

      stext='';
      nc=location.href.indexOf('?');
      if(nc&amp;gt;=0)
      {
        stext=location.href.substr(nc+1);
        nc=stext.indexOf('=');
        if(nc&amp;gt;=0)
          stext=stext.substr(nc+1);
      }

      otext=document.getElementById('idPassedText');
      otext.value=stext;
    }
    &amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body onload='fnOL();'&amp;gt;
    Passed Text: &amp;lt;input type='text' id='idPassedText'/&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/html/426765/426766/re-passing-values-between-webpages/#426766</guid>
      <pubDate>Tue, 10 Jan 2012 06:51:59 -0700</pubDate>
      <category>HTML &amp; WEB-Design</category>
    </item>
    <item>
      <title>Re: Passing values between webpages</title>
      <link>http://www.programmersheaven.com/mb/html/426765/426838/re-passing-values-between-webpages/#426838</link>
      <description>I don't understand all of them, but i feel thankfully.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/html/426765/426838/re-passing-values-between-webpages/#426838</guid>
      <pubDate>Sun, 15 Jan 2012 22:37:10 -0700</pubDate>
      <category>HTML &amp; WEB-Design</category>
    </item>
    <item>
      <title>Re: Passing values between webpages</title>
      <link>http://www.programmersheaven.com/mb/html/426765/426839/re-passing-values-between-webpages/#426839</link>
      <description>I don't understand all of them, but i feel thankfully.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/html/426765/426839/re-passing-values-between-webpages/#426839</guid>
      <pubDate>Sun, 15 Jan 2012 22:39:00 -0700</pubDate>
      <category>HTML &amp; WEB-Design</category>
    </item>
    <item>
      <title>Re: Passing values between webpages</title>
      <link>http://www.programmersheaven.com/mb/html/426765/427506/re-passing-values-between-webpages/#427506</link>
      <description>Hey that was really helpful and i would like you to visit www(dot)ebizsitedesigns(dot)com(dot)au&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/html/426765/427506/re-passing-values-between-webpages/#427506</guid>
      <pubDate>Sun, 19 Feb 2012 23:45:38 -0700</pubDate>
      <category>HTML &amp; WEB-Design</category>
    </item>
  </channel>
</rss>