473,385 Members | 1,630 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,385 software developers and data experts.

Resetting the value of a System.Web.UI.HtmlControls.HtmlInputFile

I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control. How
can I reset the HtmlInputFile control to it's original state? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/
May 21 '06 #1
8 4244
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control. How
can I reset the HtmlInputFile control to it's original state? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

May 22 '06 #2
Hi,
What you mean by reseting ?? is it means that you need to clear the value
from the control after the postback ??
--
Deepson Thomas
"Nathan Sokalski" wrote:
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control. How
can I reset the HtmlInputFile control to it's original state? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

May 22 '06 #3
I think that there is an important lesson you should learn about how ASP.NET
handles controls. Any time you add runat="server" and an ID attribute to a
control, whether it is an html control or an ASP.NET webcontrol or any other
kind of control, if it is declared ASP.NET will treat it as an object (not
necessarily with extensions, it might just be an HtmlGenericControl). But
ASP.NET does have a class for the input type="file" control, which is
System.Web.UI.HtmlControls.HtmlInputFile One of the properties of this
control is Value. The Value property is not labeled as ReadOnly, but when
ASP.NET runs into the code where I assign a value to it while my Application
is running, it gives me an error saying I cannot change the Value property.
If I remember correctly, the same thing happens in JavaScript (although it's
been a while since I tried that). I may not have explained every detail with
textbook clarity here, but the important thing is that from ASP.NET's view
in my code, it is an ASP.NET control.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field
to be reset so that the user knows the file was submitted. However,
ASP.NET does not let you change the Value property of an HtmlInputFile
control. How can I reset the HtmlInputFile control to it's original state?
Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/


May 22 '06 #4
Yes, if the control continues to display the file path after I upload it,
many users will be inclined to think the upload was unsuccessful (even
though they will be able to see it in a list on the page). But I also want
it to be cleared so that the validator control I use to check that they
selected a file is useful.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Deepson Thomas" <De***********@discussions.microsoft.com> wrote in message
news:AB**********************************@microsof t.com...
Hi,
What you mean by reseting ?? is it means that you need to clear the value
from the control after the postback ??
--
Deepson Thomas
"Nathan Sokalski" wrote:
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field
to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control.
How
can I reset the HtmlInputFile control to it's original state? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

May 22 '06 #5
I am also having difficultly with the htmlinput file control I have a script
to validate the entry if the validation fails I need to return to the form
with htmlinputfile value still selected in the input box. The validation is
actually failing because of the file description that is entered into another
field on the form.

I AM SORRY COR to post in this thread but MS does use the HTMLINPUTFILE in
documentation and I have not had luck in GOOGLE.

Do you think you could tell us where to post this question instead of here?
--
cindy
"Cor Ligthert [MVP]" wrote:
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
submit files. After the file is successfully submitted, I want the field to
be reset so that the user knows the file was submitted. However, ASP.NET
does not let you change the Value property of an HtmlInputFile control. How
can I reset the HtmlInputFile control to it's original state? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/


May 23 '06 #6
Haven't thoroughly looked at your code, but you may probably want to do the
following:

object SaveViewState()
{
object[] data = new object[2];
data[0] = base.SaveViewState();
date[1] = hash;

return data;
}

LoadViewState(object obj)
{
if(obj != null && obj is object[])
{
object[] data = (object[]) obj;
base.LoadViewState(data[0]);
Hashtable hash = (Hashtable) data[1];
<<Populate from the hash>>
}
}

--
Happy Hacking,
Gaurav Vaish
http://www.mastergaurav.org
http://www.edujini.in
-------------------
"cindy" <cm****@nospam.nospam> wrote in message
news:F7**********************************@microsof t.com...
I am also having difficultly with the htmlinput file control I have a
script
to validate the entry if the validation fails I need to return to the form
with htmlinputfile value still selected in the input box. The validation
is
actually failing because of the file description that is entered into
another
field on the form.

I AM SORRY COR to post in this thread but MS does use the HTMLINPUTFILE in
documentation and I have not had luck in GOOGLE.

Do you think you could tell us where to post this question instead of
here?
--
cindy
"Cor Ligthert [MVP]" wrote:
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle
it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in
HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
>I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
>submit files. After the file is successfully submitted, I want the field
>to
>be reset so that the user knows the file was submitted. However, ASP.NET
>does not let you change the Value property of an HtmlInputFile control.
>How
>can I reset the HtmlInputFile control to it's original state? Thanks.
> --
> Nathan Sokalski
> nj********@hotmail.com
> http://www.nathansokalski.com/
>


May 23 '06 #7
Cindy,

This is for me always the first start to problems with HTML controls. And
this special with the input file one.

http://msdn.microsoft.com/library/de...input_file.asp

This can be handled with javascript.

In VB.Net the javascript can be used with register.......... Be aware that
this have different implementations in version 1.x and 2.0

Cor
"cindy" <cm****@nospam.nospam> schreef in bericht
news:F7**********************************@microsof t.com...
I am also having difficultly with the htmlinput file control I have a
script
to validate the entry if the validation fails I need to return to the form
with htmlinputfile value still selected in the input box. The validation
is
actually failing because of the file description that is entered into
another
field on the form.

I AM SORRY COR to post in this thread but MS does use the HTMLINPUTFILE in
documentation and I have not had luck in GOOGLE.

Do you think you could tell us where to post this question instead of
here?
--
cindy
"Cor Ligthert [MVP]" wrote:
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle
it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in
HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
>I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
>submit files. After the file is successfully submitted, I want the field
>to
>be reset so that the user knows the file was submitted. However, ASP.NET
>does not let you change the Value property of an HtmlInputFile control.
>How
>can I reset the HtmlInputFile control to it's original state? Thanks.
> --
> Nathan Sokalski
> nj********@hotmail.com
> http://www.nathansokalski.com/
>


May 23 '06 #8
I am new to c# I just want to inherit from htmlinputfile control and override
default LoadPostData always returns
false I want it to return true it is not security violation because the
Value property is readonly. The user then does not have to reselect the file
to try upload again. 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 file must be 500 characters.
I am adding the file to a site server library programmatically so if the
field is too long I want to return the user to the form with file still
selected in the HtmlInputFile control. I am using an error label to inform
the user to shorten the description. I do not want the user to have to
browse again to the same file after he has shortened the description. Right
now the file does not upload but the control is empty. ASP.NET does not let
me programmatically put the full filename and path back into the Value
property of the HtmlInputFile control. How can I do this? I have version
asp.net 1.1 I found this but I don't know enough where to start
.............
these controls do not save their viewstate. LoadPostData always returns
false. You can inherit from the class and
override LoadPostData to return true and try to restore the value, and still
have value readonly.
I am new to c# and asp net controls. is there example to inherit from
HtmlInputFile class and override LoadPostData to
return true I am using C# and this is challenging me bad. cindy

--
cindy
"Cor Ligthert [MVP]" wrote:
Cindy,

This is for me always the first start to problems with HTML controls. And
this special with the input file one.

http://msdn.microsoft.com/library/de...input_file.asp

This can be handled with javascript.

In VB.Net the javascript can be used with register.......... Be aware that
this have different implementations in version 1.x and 2.0

Cor
"cindy" <cm****@nospam.nospam> schreef in bericht
news:F7**********************************@microsof t.com...
I am also having difficultly with the htmlinput file control I have a
script
to validate the entry if the validation fails I need to return to the form
with htmlinputfile value still selected in the input box. The validation
is
actually failing because of the file description that is entered into
another
field on the form.

I AM SORRY COR to post in this thread but MS does use the HTMLINPUTFILE in
documentation and I have not had luck in GOOGLE.

Do you think you could tell us where to post this question instead of
here?
--
cindy
"Cor Ligthert [MVP]" wrote:
Nathan,

A HTML control is not an ASPNET control. If it had extentions to handle
it
in a better way, than it would be an ASPNET control.

Therefore handling an HTML control is as it could be done forever in
HTML.
In my opinion is than the way to search for it on Google, but than not in
relation to DotNet but just as HTML control.

Cor

"Nathan Sokalski" <nj********@hotmail.com> schreef in bericht
news:eK**************@TK2MSFTNGP04.phx.gbl...
>I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to
>submit files. After the file is successfully submitted, I want the field
>to
>be reset so that the user knows the file was submitted. However, ASP.NET
>does not let you change the Value property of an HtmlInputFile control.
>How
>can I reset the HtmlInputFile control to it's original state? Thanks.
> --
> Nathan Sokalski
> nj********@hotmail.com
> http://www.nathansokalski.com/
>


May 23 '06 #9

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

Similar topics

0
by: szabelin | last post by:
Hello, all of a sudden my HtmlInputFile stopped working: UploadedFile.PostedFile is always null. It used to work before. Can anyone please suggest something? Thanks! &lt;input runat="server"...
12
by: Mark Kurten | last post by:
i have the code below: for starters the value of txtempid = 1 after i go through this routine (i put a break point on the txtname.value line), the value of txtEmpID is 2 (Just like it is...
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: ...
2
by: xenophon | last post by:
I added a Hidden Form Field to a form in the code behind. The value is being set in JavaScript client-side, but it is not persisting to the server in the PostBack. I know the value is being set...
8
by: Nathan Sokalski | last post by:
I have a System.Web.UI.HtmlControls.HtmlInputFile control that I use to submit files. After the file is successfully submitted, I want the field to be reset so that the user knows the file was...
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: gazza | last post by:
Hi, I have an application which shows a single record which has numerous image files stored. The images are displayed as thumbnails, and if I click on "Edit", an HtmlInputFile control is...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.