Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need some cookie help

Status
Not open for further replies.

elegidito

Programmer
Jan 19, 2002
358
need to write a cookie and read a cookie for the following code..:

<HTML>
<HEAD>


<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!--
function woot()
{
name = window.document.form1.text1.value;
document.writeln(name);
}



//-->
</SCRIPT>


</HEAD>




<BODY>
<FORM name=&quot;form1&quot;>
<textarea name=&quot;text1&quot; rows=20 cols=60>
</textarea>
<INPUT NAME=&quot;submit&quot; TYPE=Button VALUE=&quot;Upload&quot; onClick=&quot;woot()&quot;>

</FORM>


</BODY>
</HTML>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top