Currentl i have a uploadify multifile upload for users to upload image, for every image they select i would want to allow them to enter some description and than i will store the description together with the image URL into my database , now i have generated the textbox for every image selected to upload but how do i pass the value to my handler so to store it in my db? below are my codes
Uploadify JQuery:
$(document).ready(function () {
$("#<%=FileUpload1.ClientID %>").uploadify({
'swf': '../../Uploadify/uploadify.swf',
'uploader': 'Handler.ashx',
'auto': false,
'multi': true,
'buttonText': 'Select Photos',
'fileDesc': 'Image Files',
'fileTypeExts': '*.gif; *.jpg; *.png',
'queueSizeLimit': 12,
'onQueueComplete': function () {
window.location.reload();
},
'onSelect': function (file) {
$('#textboxtables').append("<tr><td style='height:50px; vertical-align:middle'><input type='text' id='" + file.name + "'/></td></tr>");
}
});
});
So for every file / image i select i will generate a tablerow with a texbox with the filename as the ID, but now how do i get the value of the textbox and pass it to my handler?