VBScript Sample: vbscript/general/fileio/newfileio.asp
   ASP Script
   Comments or Client-side Script
   HTML and Text

<html>
<head>
<title>File IO Example</title>
<SCRIPT  Language="VBScript">
function MoveFirst_OnClick(form) {
      form.MoveInfo.value = "MoveFirst";
      form.submit();
}
</SCRIPT>

</head>
<body>

  <form name="Form1" Method="Post" Action="createfile.asp">
 
 
           <input type="button" name="Browsebt" value="Browse Mode" onClick="Browsebt_OnClick(this.form);">
          
           <br><br>
           <input type="button" name="Insertbt" value="Insert" onClick="Insertbt_OnClick(this.form);">
           <input type="button" name="Deletebt" value="Delete" onClick="Deletebt_OnClick(this.form);">
 
</form>
</body>
</html>


Copyright © 1998-2002, Halcyon Software Inc. All rights reserved.