<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1141" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>First, use a form to submit the data to the next 
page, </FONT></DIV>
<DIV><FONT face=Arial size=2>then you can read through the URL's search property 
(I </FONT></DIV>
<DIV><FONT face=Arial size=2>believe that's the one you're looking for) to view 
the </FONT></DIV>
<DIV><FONT face=Arial size=2>parameter.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I wouldn't use JavaScript for this. Why is 
that&nbsp;a requirement?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Chris Tifer</FONT></DIV>
<DIV><FONT face=Arial size=2><A 
href="http://emailajoke.com">http://emailajoke.com</A></FONT></DIV>
<DIV>&nbsp;</DIV>
<BLOCKQUOTE 
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
  <DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
  <DIV 
  style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B> 
  <A title=raprolena@yahoo.com href="mailto:raprolena@yahoo.com">raprolena 
  joseph</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>To:</B> <A title=javascript@LaTech.edu 
  href="mailto:javascript@LaTech.edu">javascript@LaTech.edu</A> </DIV>
  <DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 09, 2003 4:42 
  PM</DIV>
  <DIV style="FONT: 10pt arial"><B>Subject:</B> [Javascript] Transfer Data from 
  one HTML page to another HTML page</DIV>
  <DIV><BR></DIV>
  <DIV>Hi</DIV>
  <DIV>How can we transfer data from one control (text box) in a html 
  page&nbsp;to the another control in the next html page using JavaScript.</DIV>
  <DIV>&nbsp;</DIV>
  <DIV>Ralph<BR><BR><B><I><A 
  href="mailto:javascript-request@LaTech.edu">javascript-request@LaTech.edu</A></I></B> 
  wrote:</DIV>
  <DIV>
  <BLOCKQUOTE 
  style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid; WIDTH: 100%">Send 
    Javascript mailing list submissions to<BR><A 
    href="mailto:javascript@LaTech.edu">javascript@LaTech.edu</A><BR><BR>To 
    subscribe or unsubscribe via the World Wide Web, visit<BR><A 
    href="https://lists.LaTech.edu/mailman/listinfo/javascript">https://lists.LaTech.edu/mailman/listinfo/javascript</A><BR>or, 
    via email, send a message with subject or body 'help' 
    to<BR>javascript-request@LaTech.edu<BR><BR>You can reach the person managing 
    the list at<BR>javascript-owner@LaTech.edu<BR><BR>When replying, please edit 
    your Subject line so it is more specific<BR>than "Re: Contents of Javascript 
    digest..."<BR><BR><BR>Today's Topics:<BR><BR>1. Re: If a string contains 
    many ' and " and \" (Andrew Gibson)<BR>2. Re: If a string contains many ' 
    and " and \" (Chris 
    Tifer)<BR><BR><BR>----------------------------------------------------------------------<BR><BR>Message: 
    1<BR>Date: Wed, 9 Jul 2003 11:04:44 +1200<BR>From: "Andrew Gibson" 
    <ANDYG@IHUG.CO.NZ><BR>Subject: Re: [Javascript] If a string contains many ' 
    and " and \"<BR>To: "[JavaScript List]" 
    <JAVASCRIPT@LATECH.EDU><BR>Message-ID: 
    &lt;008101c345a5$52ce5480$03e7adcb@k1n8i8&gt;<BR>Content-Type: text/plain; 
    charset="iso-8859-1"<BR><BR>As an aside I was stuck with a similar problem, 
    how to deal with the<BR>following string<BR><BR>str="Try the "following" 
    folder: d:\"this folder "<BR><BR>I can replace " with \" for the normal " 
    within the string but to save to<BR>d:\" I couldn't just add a \ to make it 
    d:\\" it would only work when I<BR>made it d:\\\"<BR><BR>Andrew 
    Gibson<BR><BR><BR><BR><BR>------------------------------<BR><BR>Message: 
    2<BR>Date: Wed, 9 Jul 2003 08:38:30 -0400<BR>From: "Chris Tifer" 
    <CHRIST@SAEWEB.COM><BR>Subject: Re: [Javascript] If a string contains many ' 
    and " and \"<BR>To: "[JavaScript List]" 
    <JAVASCRIPT@LATECH.EDU><BR>Message-ID: 
    &lt;00fa01c34617$00eb7950$f10110ac@saweb.lcl&gt;<BR>Content-Type: 
    text/plain; charset="iso-8859-1"<BR><BR>Right - you couldn't just add a 
    single \ becuase the first \ you<BR>add was for the "\" before the 
    quote.<BR><BR>You're really escaping 2 characters here. The \ and the 
    "<BR><BR>So look at it like:<BR><BR>\\ and \"<BR><BR>Which put together 
    is:<BR><BR>\\\"<BR><BR>Chris Tifer<BR><BR><BR>----- Original Message 
    -----<BR>From: "Andrew Gibson" <ANDYG@IHUG.CO.NZ><BR>To: "[JavaScript List]" 
    <JAVASCRIPT@LATECH.EDU><BR>Sent: Tuesday, July 08, 2003 7:04 PM<BR>Subject: 
    Re: [Javascript] If a string contains many ' and " and \"<BR><BR><BR>&gt; As 
    an aside I was stuck with a similar problem, how to deal with the<BR>&gt; 
    following string<BR>&gt;<BR>&gt; str="Try the "following" folder: d:\"this 
    folder "<BR>&gt;<BR>&gt; I can replace " with \" for the normal " within the 
    string but to save<BR>to<BR>&gt; d:\" I couldn't just add a \ to make it 
    d:\\" it would only work when I<BR>&gt; made it d:\\\"<BR>&gt;<BR>&gt; 
    Andrew Gibson<BR>&gt;<BR>&gt;<BR>&gt;<BR>&gt; 
    _______________________________________________<BR>&gt; Javascript mailing 
    list<BR>&gt; Javascript@LaTech.edu<BR>&gt; 
    https://lists.LaTech.edu/mailman/listinfo/javascript<BR><BR><BR>------------------------------<BR><BR>_______________________________________________<BR>Javascript 
    mailing 
    list<BR>Javascript@LaTech.edu<BR>https://lists.LaTech.edu/mailman/listinfo/javascript<BR><BR><BR>End 
    of Javascript Digest, Vol 5, Issue 
    7<BR>****************************************</BLOCKQUOTE></DIV>
  <P>
  <HR SIZE=1>
  Do you Yahoo!?<BR><A 
  href="http://us.rd.yahoo.com/search/mailsig/*http://search.yahoo.com">The New 
  Yahoo! Search</A> - Faster. Easier. Bingo.
  <P>
  <HR>

  <P></P>_______________________________________________<BR>Javascript mailing 
  list<BR>Javascript@LaTech.edu<BR>https://lists.LaTech.edu/mailman/listinfo/javascript<BR></BLOCKQUOTE></BODY></HTML>