Click here to Skip to main content
15,892,674 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Google Chart error Pin
miss78628-Feb-14 0:39
miss78628-Feb-14 0:39 
GeneralRe: Google Chart error Pin
Richard Deeming28-Feb-14 1:11
mveRichard Deeming28-Feb-14 1:11 
GeneralRe: Google Chart error Pin
miss7867-Mar-14 3:52
miss7867-Mar-14 3:52 
Questiondatetime can't be change other format? Pin
pkarthionline17-Feb-14 2:11
pkarthionline17-Feb-14 2:11 
SuggestionRe: datetime can't be change other format? Pin
Richard MacCutchan17-Feb-14 2:43
mveRichard MacCutchan17-Feb-14 2:43 
Questionabout window app Pin
Member 1057338416-Feb-14 0:50
Member 1057338416-Feb-14 0:50 
AnswerRe: about window app Pin
Richard MacCutchan16-Feb-14 1:20
mveRichard MacCutchan16-Feb-14 1:20 
QuestionWant to add radio button and append the value in CSV file Pin
abmanish7115-Feb-14 19:10
abmanish7115-Feb-14 19:10 
Hi

I am new user, any one please help me, I want to add some radio button and append the value in sample.csv file



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">

<script language="javascript">
function WriteToFile(passForm) {
var fso = new ActiveXObject("Scripting.FileSystemObject");
var fileLoc = "D:\\sample.csv";

var file = fso.openTextFile(fileLoc,8,true,0);
file.writeline(passForm.FirstName.value + ',' + passForm.LastName.value); // Add field nname
file.Close();
alert('File created successfully at location: ' + fileLoc);
}
</script>
</head>
<body>
<p>create a csv file with following details -</p>
<form>
Type your first name: <input type="text" name="FirstName" size="20"><br>
Type your last name: <input type="text" name="LastName" size="20"><br>
<input type="button" value="submit" onclick="WriteToFile(this.form)">
</form>
</body>
</html>
</br></br></html>


Thnaking You
Manish Kumar
Email abmanish71@gmail.com
AnswerRe: Want to add radio button and append the value in CSV file Pin
Kornfeld Eliyahu Peter15-Feb-14 20:33
professionalKornfeld Eliyahu Peter15-Feb-14 20:33 
Questionretrieve and display image from SQL server in html Pin
Member 1057920214-Feb-14 11:18
Member 1057920214-Feb-14 11:18 
AnswerRe: retrieve and display image from SQL server in html Pin
Richard Deeming17-Feb-14 2:04
mveRichard Deeming17-Feb-14 2:04 
GeneralRe: retrieve and display image from SQL server in html Pin
Member 1057920218-Feb-14 7:46
Member 1057920218-Feb-14 7:46 
GeneralRe: retrieve and display image from SQL server in html Pin
Richard Deeming18-Feb-14 8:04
mveRichard Deeming18-Feb-14 8:04 
GeneralRe: retrieve and display image from SQL server in html Pin
Member 1057920218-Feb-14 8:09
Member 1057920218-Feb-14 8:09 
GeneralRe: retrieve and display image from SQL server in html Pin
Richard Deeming18-Feb-14 8:14
mveRichard Deeming18-Feb-14 8:14 
GeneralRe: retrieve and display image from SQL server in html Pin
Member 1057920218-Feb-14 8:41
Member 1057920218-Feb-14 8:41 
GeneralRe: retrieve and display image from SQL server in html Pin
Richard Deeming18-Feb-14 8:59
mveRichard Deeming18-Feb-14 8:59 
GeneralRe: retrieve and display image from SQL server in html Pin
Member 1057920218-Feb-14 9:04
Member 1057920218-Feb-14 9:04 
QuestionHow to set color in whole project Pin
Member 1059282712-Feb-14 20:01
Member 1059282712-Feb-14 20:01 
AnswerRe: How to set color in whole project Pin
Richard Deeming13-Feb-14 1:26
mveRichard Deeming13-Feb-14 1:26 
QuestionAdblock system Pin
Member 804117812-Feb-14 18:23
Member 804117812-Feb-14 18:23 
AnswerRe: Adblock system Pin
Richard MacCutchan12-Feb-14 21:46
mveRichard MacCutchan12-Feb-14 21:46 
AnswerRe: Adblock system Pin
Sibeesh KV29-Sep-14 2:02
professionalSibeesh KV29-Sep-14 2:02 
Questioncopy items of one dropdownlist to another one with jquery Pin
H.Goli11-Feb-14 6:38
H.Goli11-Feb-14 6:38 
AnswerRe: copy items of one dropdownlist to another one with jquery Pin
Kornfeld Eliyahu Peter11-Feb-14 6:54
professionalKornfeld Eliyahu Peter11-Feb-14 6:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.