I have a listview which has insert capabilities, one of the fields is an image field, how can I add an upload control to upload an image and store the file path, into the the database.
Alternatively I could have the file upload outside of the layout control then update the textbox in the layout with the file path.
Thanks
Just put the FileUpload control into the ItemTemplate of your ListView. Then you need to handle the appropriate event and use the
FileUploadControl.FileNamevalue to save the path to the DB.