You would need a method of saving a file locally then. I have this which uses Active X, so will work in IE on a local machine:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
// Instantiate a File System ActiveX Object:
var fso = new ActiveXObject("Scripting.FileSystemObject");
// Invoke the method:
var a = fso.CreateTextFile("c:\\testfile.txt", true);
// Do something with it:
a.WriteLine("This is a test.");
// Close the connection:
a.Close();
</script>
</head>
<body>
</body>
</html>
I just tested it and it works, but you would need more to get it to work with the vml editor. The MS Knowledge Base:
http://search.msdn.microsoft.com/Def...us&refinement=
Should have all the information you need.
Bookmarks