Can anyone tell me the code so that people can able to download songs from my website. i have written this code but here only one song 1.mp3 is downloading at every link..\[code\]protected void Page_Load(object sender, EventArgs e){ m = Request.QueryString[m]; a = Request.QueryString[a]; a = Server.MapPath("AudioSongs/1.mp3" ); FileInfo fileinfo = new FileInfo(a); if (fileinfo.Exists) { Response.Clear(); Response.AddHeader("Content-Disposition", "attachment; filename=" + fileinfo.Name); Response.AddHeader("Content-Length", fileinfo.Length.ToString()); Response.ContentType = "application/octet-stream"; Response.Flush(); Response.WriteFile(fileinfo.FullName); Response.Redirect("moviedetails.aspx?m=" + m + ""); }}\[/code\]}