1
Answer

File transfer problems

wolf

wolf

20y
1.4k
1
My problem is this. I want to download a file from the webbserver and save it to a local client. And i the work flow is like this. After the user has register his customer data, he reicive an email with a link to the file on the server and then the dowload starts. I don´t have any idea of how to do this :-( Could anyone give me some idea´s or example of how to do this or some other way to do this Sorry for my poor english
Answers (1)
0
Amit Dhania

Amit Dhania

NA 659 164.6k 16y

We can put fields on report dynamically. For it we have to put formula-fields on report on design time.
We can put fields value from database in formula-fields in our c# coding.

For example AttendenceReport is crystal report having formula-field "status".

 AttendenceReport objAttendenceReport=new AttendenceReport();
//{AttendenceTable.Status} values coming from //database                               objAttendenceReport.DataDefinition.FormulaFields["Status"].Text = "{AttendenceTable.Status}";