Jump to content
shushin

Javascript Filewriting to asp page

Recommended Posts

Posted

I started to learn java script. But before then I studied and mastered php to an extent, that I have decided to learn java script also.

In php, there is this thing I tried, file writing kindly take a look at this simple source I wrote


$name= $_POST['name'];
$email= $_POST['email];
$file = fopen("textfile.text","r");
$info = "Name: $name\n Email : $email\n";
fwrite($file,$info);
fclose($file);

Now this simple code is suppose to save the information to a text file, now suppose I want to do this sort of thing in java script, how do I go about it? In this case am trying to write data to an asp file (say "details.asp") and not to a text file.

Just very interested to know the whereabouts and how I can work on them.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...