I've been using Easy Code (with GoAsm) since July 2012 and I've found it to be remarkably stable. But I finally have done something that seems to crash the editor:
frmdata_3 DATABLOCK_BEGIN
--AaB03x
Content-Disposition: form-data; name="submit"
Upload file
--AaB03x
Content-Disposition: form-data; name="file"; filename="file4.txt"
Content-Type: text/plain
... contents of file1.txt ...
--AaB03x--
DATABLOCK_END
I believe the problem is related to the automatic syntax checking (?), which is a very useful feature and I hate to turn it off. Another related problem is that the Easy Code editor is sometimes changing the context of this data block.
Any ideas? I also have defined the data block differently and it works, but the above definition is a lot clearer.
Alternate data definition:
frmdata_2 DB '', 0DH, 0AH
DB '--AaB03x', 0DH, 0AH
DB 'Content-Disposition: form-data; name="submit"', 0DH, 0AH
DB '', 0DH, 0AH
DB 'Upload file', 0DH, 0AH
DB '--AaB03x', 0DH, 0AH
DB 'Content-Disposition: form-data; name="file"; filename="file2.txt"', 0DH, 0AH
DB 'Content-Type: text/plain', 0DH, 0AH
DB '', 0DH, 0AH
DB '... contents of file1.txt ...', 0DH, 0AH
DB '--AaB03x--', 0DH, 0AH
BTW: I'm uploading a file to a remote server running PHP. The code works (but the editor crashes/automatic modifications are a problem).
Any thoughts on how to handle this?
Thanks!
Gary