hi
now am file downloading concept
protected void LinkButton1_Click(object sender, EventArgs e)
{
string FilePath = Server.MapPath(Request.QueryString["MusicUpload"].ToString());
System.IO.FileInfo TargetFile = new System.IO.FileInfo(FilePath);
if (TargetFile.Exists)
{
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment; filename=" + TargetFile.Name);
Response.AddHeader("Content-Length", TargetFile.Length.ToString());
Response.ContentType = "application/octet-stream";
Response.WriteFile(TargetFile.FullName);
}
but this coding client side perfect but not support server side...
i want server support coding..
chandru