473,395 Members | 1,595 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

HtmlInputFile to get filename only without upload

Can I use HtmlInputFile to only get the selected file name but not actually
upload the file?

Clicking the control's Browse button let's the user select a file. All I
need is the HtmlInputFile Value property. However, any button clicked on the
Html page results in uploading the selected file. Is there a way to avoid
the actual uploading?

Alternatively, is there any other way to let a user select a file name from
his local disk?

Thanks,
Ariel
--
==================================================
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
==================================================
Nov 18 '05 #1
5 3578
Never tried this but if you use the usual enctype instead
multipart/form-data, I believe the file will not be uploaded....

Another option would be to copy the file name into an hidden textbox and to
prevent posting of this particular field (by clearing this node for a
radical solution to just clearing the name attribute or disabling the
control).

Let us know.

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:%2****************@tk2msftngp13.phx.gbl...
Can I use HtmlInputFile to only get the selected file name but not actually upload the file?

Clicking the control's Browse button let's the user select a file. All I
need is the HtmlInputFile Value property. However, any button clicked on the Html page results in uploading the selected file. Is there a way to avoid
the actual uploading?

Alternatively, is there any other way to let a user select a file name from his local disk?

Thanks,
Ariel
--
==================================================
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
==================================================


Nov 18 '05 #2
Thank you for your answer.

I removed the enctype attribute but it did not help. The file is still uploaded.

Can you explain the second option you suggested. How do I prevent the HtmlInputFile control from uploading the file? The file name is displayed in the control's text box, but as soon as I activate any button, the file gets uploaded. I can copy the file name to a textbox, but this can be carried out only after uploading is complete. The uploading seems to be activated before any action initiated by the code.

Thanks again,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message news:u2*************@TK2MSFTNGP10.phx.gbl...
Never tried this but if you use the usual enctype instead
multipart/form-data, I believe the file will not be uploaded....

Another option would be to copy the file name into an hidden textbox and to
prevent posting of this particular field (by clearing this node for a
radical solution to just clearing the name attribute or disabling the
control).

Let us know.

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:%2****************@tk2msftngp13.phx.gbl...
Can I use HtmlInputFile to only get the selected file name but not actually upload the file?

Clicking the control's Browse button let's the user select a file. All I
need is the HtmlInputFile Value property. However, any button clicked on the Html page results in uploading the selected file. Is there a way to avoid
the actual uploading?

Alternatively, is there any other way to let a user select a file name from his local disk?

Thanks,
Ariel
--
==================================================
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
==================================================

Nov 18 '05 #3
My first thought would be :
- don't include the "name" attribute. Controls without the name attribute
shouldn't post their values. This way the file shoudn't be uploaded either.
- on the onsubmit event, copy the value of the htmlInputFile to an hidden
text box so that the name is still posted...

In the worst case you could try also to use this event to clear totally the
input type=file tag from the HTML form so that it is not posted (it should
hopefully really prevent the file from being uploaded)...

Hope it helps....

Actually I finally made quick client side test using ASP. My web browser is
IE 6:
- with the default enctype, the file is NOT posted (make sure you don't have
a browser cache problem or whatever).

If I'm using enctype="multipart/form-data" the file is posted.

I can still avoid to send its content by not using the name attribute on the
input type=file tag. My final code is (ASP). Note though that the file part
file is still here (Request.Files.count will still return a file) but there
is no content in beetween (no content sent, you'll seee an empty file server
side).

The final HTML code is (you may want to test other browsers) :

<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<%
Response.BinaryWrite Request.BinaryRead(Request.TotalBytes)
%>
<FORM action="tst.asp" method="post"
onSubmit="hiddenfilename.value=filename.value"
enctype="multipart/form-data">
<INPUT type="file" id="filename">
<INPUT type="textbox" id="hiddenfilename" name="hiddenfilename">
<INPUT Type="submit">
</FORM>
</BODY>
</HTML>

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:c1**********@news2.netvision.net.il...
Thank you for your answer.

I removed the enctype attribute but it did not help. The file is still uploaded.
Can you explain the second option you suggested. How do I prevent the HtmlInputFile control from uploading the file? The file name is displayed in
the control's text box, but as soon as I activate any button, the file gets
uploaded. I can copy the file name to a textbox, but this can be carried out
only after uploading is complete. The uploading seems to be activated before
any action initiated by the code.
Thanks again,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message news:u2*************@TK2MSFTNGP10.phx.gbl... Never tried this but if you use the usual enctype instead
multipart/form-data, I believe the file will not be uploaded....

Another option would be to copy the file name into an hidden textbox and to prevent posting of this particular field (by clearing this node for a
radical solution to just clearing the name attribute or disabling the
control).

Let us know.

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:%2****************@tk2msftngp13.phx.gbl...
Can I use HtmlInputFile to only get the selected file name but not

actually
upload the file?

Clicking the control's Browse button let's the user select a file. All I
need is the HtmlInputFile Value property. However, any button clicked on

the
Html page results in uploading the selected file. Is there a way to avoid the actual uploading?

Alternatively, is there any other way to let a user select a file name

from
his local disk?

Thanks,
Ariel
--
==================================================
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
==================================================



Nov 18 '05 #4
I now see why are experiences differ. I use the server side control
(type="file" runat="server" i.e. HtmlInputFile) while you use the Html
control. It is true that the Html control does not upload the file when it
does not have a name attribute or when the enctype is set to default. The
server side control, however, always uploads the file before anything else.

My form is server side and contains several web controls. Can I place in
this form a plain Html control of type="file" and still get the control
value into server code?

Thanks,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
My first thought would be :
- don't include the "name" attribute. Controls without the name attribute
shouldn't post their values. This way the file shoudn't be uploaded either. - on the onsubmit event, copy the value of the htmlInputFile to an hidden
text box so that the name is still posted...

In the worst case you could try also to use this event to clear totally the input type=file tag from the HTML form so that it is not posted (it should
hopefully really prevent the file from being uploaded)...

Hope it helps....

Actually I finally made quick client side test using ASP. My web browser is IE 6:
- with the default enctype, the file is NOT posted (make sure you don't have a browser cache problem or whatever).

If I'm using enctype="multipart/form-data" the file is posted.

I can still avoid to send its content by not using the name attribute on the input type=file tag. My final code is (ASP). Note though that the file part file is still here (Request.Files.count will still return a file) but there is no content in beetween (no content sent, you'll seee an empty file server side).

The final HTML code is (you may want to test other browsers) :

<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<%
Response.BinaryWrite Request.BinaryRead(Request.TotalBytes)
%>
<FORM action="tst.asp" method="post"
onSubmit="hiddenfilename.value=filename.value"
enctype="multipart/form-data">
<INPUT type="file" id="filename">
<INPUT type="textbox" id="hiddenfilename" name="hiddenfilename">
<INPUT Type="submit">
</FORM>
</BODY>
</HTML>

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:c1**********@news2.netvision.net.il...
Thank you for your answer.

I removed the enctype attribute but it did not help. The file is still uploaded.

Can you explain the second option you suggested. How do I prevent the

HtmlInputFile control from uploading the file? The file name is displayed

in the control's text box, but as soon as I activate any button, the file gets uploaded. I can copy the file name to a textbox, but this can be carried out only after uploading is complete. The uploading seems to be activated before any action initiated by the code.

Thanks again,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message

news:u2*************@TK2MSFTNGP10.phx.gbl...
Never tried this but if you use the usual enctype instead
multipart/form-data, I believe the file will not be uploaded....

Another option would be to copy the file name into an hidden textbox and

to
prevent posting of this particular field (by clearing this node for a
radical solution to just clearing the name attribute or disabling the
control).

Let us know.

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:%2****************@tk2msftngp13.phx.gbl...
Can I use HtmlInputFile to only get the selected file name but not

actually
upload the file?

Clicking the control's Browse button let's the user select a file. All I need is the HtmlInputFile Value property. However, any button clicked
on
the
Html page results in uploading the selected file. Is there a way to

avoid the actual uploading?

Alternatively, is there any other way to let a user select a file name

from
his local disk?

Thanks,
Ariel
--
==================================================
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
==================================================


Nov 18 '05 #5
A "server control" is just a way to be able to easily control HTML
generation. Does it creates the appropriate HTML code client side ?

If the server control prevents generating the proper HTML code, you could
anyway use just literal text for this input type="file" tag as it is to
ignore anyway server side (you'll get the filename through an hidden
textbox).

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:c1**********@news2.netvision.net.il...
I now see why are experiences differ. I use the server side control
(type="file" runat="server" i.e. HtmlInputFile) while you use the Html
control. It is true that the Html control does not upload the file when it
does not have a name attribute or when the enctype is set to default. The
server side control, however, always uploads the file before anything else.
My form is server side and contains several web controls. Can I place in
this form a plain Html control of type="file" and still get the control
value into server code?

Thanks,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message
news:%2******************@TK2MSFTNGP11.phx.gbl...
My first thought would be :
- don't include the "name" attribute. Controls without the name attribute
shouldn't post their values. This way the file shoudn't be uploaded either.
- on the onsubmit event, copy the value of the htmlInputFile to an hidden text box so that the name is still posted...

In the worst case you could try also to use this event to clear totally

the
input type=file tag from the HTML form so that it is not posted (it should hopefully really prevent the file from being uploaded)...

Hope it helps....

Actually I finally made quick client side test using ASP. My web browser

is
IE 6:
- with the default enctype, the file is NOT posted (make sure you don't

have
a browser cache problem or whatever).

If I'm using enctype="multipart/form-data" the file is posted.

I can still avoid to send its content by not using the name attribute on

the
input type=file tag. My final code is (ASP). Note though that the file

part
file is still here (Request.Files.count will still return a file) but

there
is no content in beetween (no content sent, you'll seee an empty file

server
side).

The final HTML code is (you may want to test other browsers) :

<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
<%
Response.BinaryWrite Request.BinaryRead(Request.TotalBytes)
%>
<FORM action="tst.asp" method="post"
onSubmit="hiddenfilename.value=filename.value"
enctype="multipart/form-data">
<INPUT type="file" id="filename">
<INPUT type="textbox" id="hiddenfilename" name="hiddenfilename">
<INPUT Type="submit">
</FORM>
</BODY>
</HTML>

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:c1**********@news2.netvision.net.il...
Thank you for your answer.

I removed the enctype attribute but it did not help. The file is still

uploaded.

Can you explain the second option you suggested. How do I prevent the

HtmlInputFile control from uploading the file? The file name is displayed in
the control's text box, but as soon as I activate any button, the file gets
uploaded. I can copy the file name to a textbox, but this can be carried

out
only after uploading is complete. The uploading seems to be activated

before
any action initiated by the code.

Thanks again,
Ariel
--
================================================== =============
Ariel Dolan
ar******@netvision.net.il

Artificial Life and other Experiments
http://www.aridolan.com
http://www.arieldolan.com
================================================== =============
"Patrice Scribe" <no****@nowhere.com> wrote in message

news:u2*************@TK2MSFTNGP10.phx.gbl...
Never tried this but if you use the usual enctype instead
multipart/form-data, I believe the file will not be uploaded....

Another option would be to copy the file name into an hidden textbox and to
prevent posting of this particular field (by clearing this node for a
radical solution to just clearing the name attribute or disabling the
control).

Let us know.

Patrice

--

"Ariel Dolan" <ar******@netvision.net.il> a écrit dans le message de
news:%2****************@tk2msftngp13.phx.gbl...
> Can I use HtmlInputFile to only get the selected file name but not
actually
> upload the file?
>
> Clicking the control's Browse button let's the user select a file.

All I > need is the HtmlInputFile Value property. However, any button
clicked
on the
> Html page results in uploading the selected file. Is there a way to

avoid
> the actual uploading?
>
> Alternatively, is there any other way to let a user select a file

name from
> his local disk?
>
> Thanks,
> Ariel
> --
> ==================================================
> Ariel Dolan
> ar******@netvision.net.il
>
> Artificial Life and other Experiments
> http://www.aridolan.com
> http://www.arieldolan.com
> ==================================================
>
>



Nov 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: shimonsim | last post by:
Hi, I need to upload pictures from client machine and I am using HtmlInputFile control I set validator to make sure that file has correct expention but if one of the files has incorrect extention...
1
by: Viktor Popov | last post by:
Hi, I'm trying to upload a file and I do that with this code, but there is a thing which doesn't work. I can't understand how to check if it isn't written the path to the file(the text field of...
5
by: Grant Harmeyer | last post by:
I have an application that uses FreeTextBox 2.0 (http://www.freetextbox.com). FreeTextBox is a rich text editor that behaves similarly to MS Word. The FreeTextBox control has a button to insert...
4
by: Chris | last post by:
I'm uploading files to a location on my server. It works fine accept, I can't seem to get the control over the max file size to upload and the types I want to only allow. Max file size = 50KB...
3
by: Rik Moed | last post by:
Hi, I am having a problem with Excel 2003 worksheets when I upload them using the HtmlIputFile. After the upload, I start to download the worksheet and it appears to be currupt. I recieve the...
3
by: UJ | last post by:
Guys, I know this isn't the appropriate place to post this because it's HTML not ASP.Net but I need some guidance. I have a web page with an HTMLInputFile on it. The person enters the stuff,...
3
by: Dave Adler | last post by:
Is there any way to retain the value of an HtmlInputFile control through a postback? I do some server side validation on the page when it is submitted and if an error occurs on the page the...
2
by: Sean Carey | last post by:
I converted a C# Upload app to VB.NET and am down to one error and was hoping someone could help me with te error. I would greatly appreciate help from anyone. Here is the error: ...
7
by: cindy | last post by:
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to submit files. Before the file is successfully submitted I validate another field on the form, it is the description of the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.