Create a .txt file and populate it with the value of Textarea
Hi,
In my application I have a textarea and a button. I want to enter something inside the Textarea and if I click the button the entry gets copied to a file on say c:\test.txt file.
here is my code ...
<HTML>
<HEAD>
<script language="Javascript">
function functSave()
{
<what code shud i write here>
}
</script>
</HEAD>
<BODY>
<h1>Testing ...</h1>
<textarea name="Result" id="resultId" cols="100" rows="25">
</textarea>
<input type = "button" value = "Save" onClick="functSave()">
</BODY>
</HTML>
can u help me ?

