asp.net mvc file download

--

asp.net mvc file download:excel,txt.word,pdf

public class HomeController : Controller

{

public ActionResult Index()

{

return View();

}

public ActionResult DownloadPdf()

{

return File(“~/Content/Example.pdf”, “application/pdf”, “Example.pdf”);

}

public FileResult DownloadText()

{

return File(“~/Content/TextFile1.txt”, “text/plain”, “TextFile1.txt”);

}

public FileResult DownloadWord()

{

return File(“~/Content/Document.doc”, “text/msword”, “Document.doc”);

}

public FileResult DownloadExcel()

{

return File(“~/Content/DemoExcel.xls”, “application/ms-excel”, “DemoExcel.xls”);

}

}

--

--

ilhan DEMİRTEPE
ilhan DEMİRTEPE

No responses yet