Need help with multi file upload script
Hi u all,
I need some help regarding multi image upload script for asp.
Here is brief introduction:
- member_property_new_record.asp with upload image option (iframed; iframe page: save_pictures.asp)
- save_pictures.asp: upload up to 12 images, every single has it's own link
Code:
<a onclick="MM_openBrWindow('yukle.asp?ilanno=<%=session("ilanno")%>','','scrollbars=yes,width=435,height=370')">
- yukle.asp
Code:
<form method="POST" enctype="multipart/form-data" action="picture_record_post.asp?ilanid=<%=request("ilanno")%>">
<input type="file" name="filename" id="filename" size="37" style="font-family: Tahoma; font-size: 8pt">
<input type="submit" value="Yükle" onClick="Validate();" name="B1" style="font-family: Tahoma; font-size: 8pt">
</form>
- picture_record_post.asp (resizes, renames images and uploads to specific folder)
Everything works just find, but the problem is that users can't upload more than one image at once. I've googled scripts but almost all are combined with php. Aurigma would be great, but I would like to use free script.
Any suggestions?