All Questions
3 questions
0
votes
1
answer
1k
views
asp:FileUpload control not getting file value when using fake input
I try to customize my asp:FileUpload control by using some css trick. When I finally upload the picture, it seems that the asp:FileUpload did not grab the file.
In the aspx page:
<style>
#...
0
votes
2
answers
1k
views
How to let user upload multiple images without pre-defining the number of HTML upload input box?
I'm looking for a way to have user upload as many images as they want (perhaps via drag and drop) or dynamically adding more upload box.
I thought statically fixing (say 6) HTML upload input box is ...
1
vote
2
answers
8k
views
Getting full file path from code behind from file HTML input
I used file HTML input instead of FileUpload Web Control. Don't ask why but I just have to!
HTML:
<input type="file" id="image1" class="listUploadAdd" name="ImageAdd1" />
Code behind:
Dim ...