Ask a Question related to ASP.NET General, Design and Development.
-
bruce barker #1
Re: HELP - HtmlInputFile Server Control
the browser will not allow this feature for security reasons. the filname is
readonly. you must supply an active/x control to support this feature.
-- bruce (sqlwork.com)
"Steven" <sfuentes@caribe.net> wrote in message
news:020601c34c80$8af51bf0$a101280a@phx.gbl...> I have successfully uploaded individual files using the
> HtmlInputFile Control, but can't figure out a quick and
> easy way to do the same for multiple files. Let's say I
> want to upload all the files in a folder...I tried looping
> thru all the files, but can't assign the filename property
> to control, to then upload it with the SaveAs method.
>
> Any suggestions?
> TIA
bruce barker Guest
-
HTMLInputFile Control Question
I am using ASP.Net with C# as the code behind and am trying to upload multiple files with the HTMLInputFile Control. I am able to browse, select a... -
HtmlInputFile
How can I can I get the FileName value from an HtmlInputFile control into a textbox? Both controls are in the same row of the datagrid and I'm... -
Help needed with htmlinputfile controls
Hi All, I am looking for help with getting the Value property from a htmlinputfile control when the user selects the Submit button on my form. ... -
System.Web.UI.HtmlControls.HtmlInputFile
Hello, all of a sudden my HtmlInputFile stopped working: UploadedFile.PostedFile is always null. It used to work before. Can anyone please suggest... -
Replicate HTMLInputFile functionality
Hi All, I am trying to replicate the functionality of the HTML FileField control. I can use it just fine to prompt a user to browse to a file,... -
Bill Priess #2
Re: HELP - HtmlInputFile Server Control
Generally, you do not want your users to be able to upload more than 5 files
at a time. This is both for performance and security. Anyhow, the best thing
I can think of is using multiple file upload controls or writing something
custom on the client side to dynamically create and populate a multipart
encoded form.
HTH,
Bill P.
"Steven" <sfuentes@caribe.net> wrote in message
news:020601c34c80$8af51bf0$a101280a@phx.gbl...> I have successfully uploaded individual files using the
> HtmlInputFile Control, but can't figure out a quick and
> easy way to do the same for multiple files. Let's say I
> want to upload all the files in a folder...I tried looping
> thru all the files, but can't assign the filename property
> to control, to then upload it with the SaveAs method.
>
> Any suggestions?
> TIA
Bill Priess Guest



Reply With Quote

