i will explain my requirements clearly i have one textbox in this text box we will give movie name ,one file upload control this is for browse the mp3 files after typing the movie name in the textbox, in solution explorer one folder has to create dynamically with the movie name given textbox and that movie name has to store in the database then using fileupload control we will browse the mp3 files that songs has to store in the folder specified by movie name then this songs path has to stores in the database according to movie name how to implement this pls give code for this............
Simply create a table called Audio with the following columns
1. Id
2. FolderName
3. Path
And use the following insert query
insert into Audio values(1, 'Harry Potter', '/HarryPotter/Song.mp3')
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.