Sachin111 0 Posted April 8, 2015 Report Share Posted April 8, 2015 I am making a music store project.. I want some method so that users can upload mp3 files in it.. i have tried many codes but i cud not do it. please tell me how i can complete this.. Quote Link to post Share on other sites
justsomeguy 1,135 Posted April 8, 2015 Report Share Posted April 8, 2015 This shows the various pieces you need:http://support.microsoft.com/en-us/kb/323246 Quote Link to post Share on other sites
AjayGohil 0 Posted September 24, 2019 Report Share Posted September 24, 2019 Try this code for file upload View File <!DOCTYPE html> <html> <head> <title></title> </head> <body> <form id="form1" runat="server"> <div> <p>Upload File</p> <asp:FileUpload ID="FileUpload" runat="server" /> </div> <p> <asp:Button ID="ButtonUpload" runat="server" Text="Upload File" OnClick="Button_Click" /> </p> </form> <p> <asp:Label runat="server" ID="FileUploadStatus"></asp:Label> </p> </body> </html> aspx.cs file using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace FileUploadControlls { public partial class WebControls : System.Web.UI.Page { protected System.Web.UI.HtmlControls.HtmlInputFile File1; protected System.Web.UI.HtmlControls.HtmlInputButton Submit1; protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { if ((FileUpload.PostedFile != null) && (FileUpload.PostedFile.ContentLength > 0)) { string fn = System.IO.Path.GetFileName(FileUpload1.PostedFile.FileName); string SaveLocation = Server.MapPath("upload") + "\\" + fn; try { FileUpload.PostedFile.SaveAs(SaveLocation); FileUploadStatus.Text = "The file has been uploaded."; } catch (Exception ex) { FileUploadStatus.Text = "Error: " + ex.Message; } } else { FileUploadStatus.Text = "Please select a file to upload."; } } } } Quote Link to post Share on other sites
justsomeguy 1,135 Posted September 24, 2019 Report Share Posted September 24, 2019 You popped in just to reply to a 4-year-old topic, huh? Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.