I have a problem, I have a web application (ASP.NET) it is installed in the server computer, if I run it on my computer (locally) of course it works properly, the reports are generated in my machine.
But when I installed it in the server and access the application from the server, and tried to generate report (using a button) it was not on my machine but it saves to the server machine.
I'm currently using this path as my file saving location:
This is where my Reports(.pdf) saves/generated
string folderDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
What should I do to save my report in my local machine if the web application is installed only in the server?
Btw. im using "iTextSharp" as my PDF Exporter/Generator and System.IO for file handling.
Thanks in advance have a nice day!