If I create a file in Codebehind where does the physical file acually exist?

azerty77

New Member
\[code\] protected void Page_Load(object sender, EventArgs e) { System.IO.File.WriteAllText(@"C:\CallInformation.txt", "Some data"); }\[/code\]is CallInformation.txt on the Server? Or the client? If it's the server, other than specifying a computer name (@"\Workstation\c$\CallInformation.txt") how can I get it to save the file client side?
 
Back
Top