G
gatekeeper
Why could it be that i am able to use StreamWriter from a
windows application but not from a web application?
I am getting an unauthorizedaccessexception and the
exception message is "Access to the path... is denied".
the code i'm using is very straightforward:
using System.IO;
....
StreamWriter sw = new StreamWriter(@"C:\Testing123.txt");
sw.Write("web");
sw.Close();
i am baffled.
Is this a security issue?
thank you in advance..
windows application but not from a web application?
I am getting an unauthorizedaccessexception and the
exception message is "Access to the path... is denied".
the code i'm using is very straightforward:
using System.IO;
....
StreamWriter sw = new StreamWriter(@"C:\Testing123.txt");
sw.Write("web");
sw.Close();
i am baffled.
Is this a security issue?
thank you in advance..