FastReport .Net allows you to export reports in various formats, send them via Email, as well as via FTP. In this article, I want to focus on the transfer to the server via FTP reports. It should be noted, it is not very convenient to run each report and manually perform sending via FTP. What if a large number of reports should be sent to the server?
What are the solutions to this problem:
Send all report files directly using the file manager with FTP-connections. Butbefore all reports should be exported to the desired format;
Arrange export and send report using FastReport, but do it in the application code.
Obviously, the second way will save time when you export the report in the desired format. In addition, you can completely automate this process. For example, to lay out all of the reports to a server on a schedule or one click a button.
I will show an example in which you will see the simplicity of an operation suc ...