Forum Discussion

saivina2920's avatar
saivina2920
Icon for Post Prodigy rankPost Prodigy
5 years ago
Solved

How do we call File server path along with service account during button click event.

I have one requirement and it is most important of my project.   I'm using multiple buttons used in my dashboard.   I have some files and kept it in file server path like \\RMN\T001\PROC\MATERIAL...
  • saivina2920's avatar
    saivina2920
    5 years ago

    I created website and used below code. Called website url in button event.

     

    string folder = @"\\RMN\T001\PROC\MATERIALDB\";
    string fileName="MAT01210821.png";
    string filePath=Path.Combine(folder, fileName) ;
    Response.ContentType = ("application/pdf");
    Response.AddHeader("content-disposition", "attachment; filename=" + fileName);
    Response.TransmitFile(filePath);

     

    create new  app pool in IIS, and apply service account instead of using web config file.

     

    Map that new pool in that website.

     

    It's working perfect.

     

    Thanks.