Not able to generate excel file locally
Hi guys,
My web server & database server are on 2 different systems. I am trying to generate excel file locally but the excel is getting generated on server. Output path is
c:\\" + output + ".xls
There is no problem anywhere else in code. If a user on any system is trying to generate excel file it's getting generated on server in C drive. But the excel should generate on local system of that particular user.
Is this code fine?
\\c:\\" + output + ".xls
or
/c:\\" + output + ".xls
or something else. Anybody please let me know.