Is it possible to use this on a windows phone?
var fsObj = new ActiveXObject("Scripting.FileSystemObject");
var theFile = fsObj.CreateTextFile("c:\\giantco.txt", true);
theFile.WriteLine(theData);
theFile.Close();
I understand that there might not be a c:\ there – is there an alternative for both WP7 and iPhone?
Cheers!
No. ActiveX does not exist on WP7. You don’t have direct access to the file system from either web browser.