You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to httpf...@googlegroups.com
I have just enough knowledge to hack around with Fiddler custom.js, but I can't seem to find the right javascript objects that will let me simply append a string to a text file.
Lil help? TIA.
EricLaw
unread,
Jun 30, 2014, 10:55:32 AM6/30/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to httpf...@googlegroups.com
Add
#import System.IO
at the top. Then:
var sw = File.AppendText("C:\\temp\\whatever.txt"); sw.WriteLine("This"); sw.WriteLine("is Extra"); sw.WriteLine("Text"); sw.Close();