Download and view excel sheet in asp.net
Hello Developers,i am successfully uploaded a file with filename,filepath,filetype and stored it inside the database but now am trouble with Download and View the excel sheet.So please help me for how am download and view the excel sheet
Below is my code,
<--Download-->
protected void lnkDownload_Click(object sender, EventArgs e)
{
string path = Server.MapPath("~/");
string phy_path = "http://localhost:22439/ALUMNI%20PROCESS";
string filePath = (sender as LinkButton).CommandArgument;
Response.ContentType = ContentType;
Response.AppendHeader("Content-Disposition", "ExcelSheet; filename=" + path + phy_path + getFilename(filePath));
Response.WriteFile(filePath);
Response.End();
}
<--View-->
I Dontr know what to write here
Thanks with,
Paul.S