Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. string newfilepath = "";
  2. string newfilepathmnt = "";
  3. object mngrclassobj = Session["Mngrobj"];
  4. SessionManager mngrclass = (SessionManager)mngrclassobj;
  5. newfilepath = mngrclass.ExcelPath + "TruckUtilizationBaseFiguresCompany.xls";
  6. newfilepathmnt = mngrclass.ExcelPath + "TruckUtilizationbaseFiguresCompany.xls";
  7.  
  8.  
  9. string filepath = newfilepath;
  10. string filepathmnt = newfilepathmnt;
  11. fpsDetails.SaveExcel(filepath, FarPoint.Web.Spread.Model.IncludeHeaders.BothCustomOnly);
  12. fpsMonthlySetup.SaveExcel(filepathmnt, FarPoint.Web.Spread.Model.IncludeHeaders.BothCustomOnly);
  13.  
  14.  
  15.  
  16. FileInfo file = new FileInfo(filepath);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement