Having trouble saving and reading text files from a text area in an html page.
Found this:
uses Classes; //Add this to the top of the script
procedure WriteTextToFile(Filename, Contents: String);
var
T: TStringList;
begin
T := TStringList.Create;
// Sets the contents.
T.Text := Contents;
//...