Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-04-2012, 04:01 AM   PM User | #1
bheema
New Coder

 
Join Date: Nov 2012
Posts: 11
Thanks: 4
Thanked 0 Times in 0 Posts
bheema is an unknown quantity at this point
HTML form using javascripct save in CSV format

I want to save the input form using this makeFile() function.I want it to save the whole form in csv format in a share drive....How can i make it read the whole file...TQ...n Am i doing it correctly?Please help me solve this problem...


Code:
function makeFile(){
var fso = newActiveXObject("Scripting.FileSystemObject");
var fileLoc = "E:\sample.csv";
var file = fso.CreateTextFile(fileLoc, true);
file.writeline();
file.Close();
alert('File created successfully at location: ' + fileLoc);
} 


<form name="form1" action="" method="get">
TESTER <input type="text"/>	 DATE <input type="text" />	 EMP NO <input type="text" />	6S DONE <input type="text" />

<br />
<br />

WW <input type="text" size="8"maxlength="8"/>	 NAME <input type="text" />	 SHIFT <input type="text" />

<br />
<br />
<br />

PASSOVER (Please verify Summit Receipe & Storm before start shift)

<br />
<br />
<br />


Summit Receipe OK ? 
<select name=""> 
<option value="" style="display:none;"></option>	
<option value="Yes">Yes</option>	
<option value="No">No</option>	
</select>	

<br />
<br />

Motif/ Storm OK ? 
<select name=""> 
<option value="" style="display:none;"></option>	
<option value="Yes">Yes</option>	
<option value="No">No</option>	
</select>	

<br />
<br />
<br />

<p>
<input type="button" value="Add" onclick="addRowToTable();" />
<input type="button" value="Delete" onclick="removeRowFromTable();" />
</p>
<p>
</p>
<table border="1" id="tblSample">
<tr>
<TH>Num</TH>
<TH>Lot Number</TH>
<TH>Location</TH>
<TH>Total In</TH>
<TH>1 * Test</TH>
<Th>2 * Test</TH>
<TH>3 * Test</TH>
<TH>Total Out</TH>
<TH>Lot Status</TH>
<TH>Remark</TH>

</tr>
</table>

<br />
<br />
<br />
<input type="button" value="Add" onclick="addRowToTable2();" />
<input type="button" value="Delete" onclick="removeRowFromTable2();" />
</p>
<p>
</p>
<table border="1" id="tbl">
<tr>
<TH>Num</TH>
<TH>Entry</TH>
<TH>Down</TH>
<TH>Up</TH>
<TH>Failure Mode/ Action/ Remark</TH>
<Th>D/T</TH>
<TH>Attended By</TH>

</tr>
</table>
<br />
<br />
<input type="submit" value="Submit" onclick="makeFile();"/>
</form>
</div>
</body>
</html>
bheema is offline   Reply With Quote
Reply

Bookmarks

Tags
html, javascript

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:18 PM.


Advertisement
Log in to turn off these ads.