Download Mp3
-
I have developed a website for listening mp3 songs. But i should give option to download MP3 songs when visitors click Download button. How can i do it?
-
I have developed a website for listening mp3 songs. But i should give option to download MP3 songs when visitors click Download button. How can i do it?
Just write the code to set the content type and then send the bytes of the file. Or just have a link that users can right click on to download.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I have developed a website for listening mp3 songs. But i should give option to download MP3 songs when visitors click Download button. How can i do it?
it`s very easy friend ;) the work you must do is just to give the visitor the path of that file ! for example if you have button that visitor clicks that to download file you do this on button_click :
protected void btn1_Click(object sender, EventArgs e)
{
Response.Redirect("~musicsfolder//music.mp3");
} -
it`s very easy friend ;) the work you must do is just to give the visitor the path of that file ! for example if you have button that visitor clicks that to download file you do this on button_click :
protected void btn1_Click(object sender, EventArgs e)
{
Response.Redirect("~musicsfolder//music.mp3");
}