I'm trying to use Server.MapPath instead of the complete path which basically looks like this
CsvFile= @"D:\web\finalsa\en\csr\download_center\Click_Counter.csv";
The file where i write this line is located in :
D:\web\finalsa\en\include";
Therefore i tried to write this without any success:
CsvFile= Server.MapPath("../csr/download_center/Click_Counter.csv");
Can anyone tell me what i'm doing wrong ? Thanks in advance