Ask a Question related to ASP.NET General, Design and Development.
-
John Smith #1
Clearing values in WebControls
Hi folks,
I have a form with ASP.NET web controls.
At the end of the form there's the "Clear" button to clear the available
values and start over.
How do I do that?
The following did not work because it unloaded the controls, and not just
clearing the values:
- this.Controls.Clear();
How do I do it easily? For example, the following pseudo is what I want to
accomplish:
- foreach (control in myControlCollection)
control.ClearValue();
or the following is just as acceptable since there are only a few control
type:
- foreach (control in myControlCollection)
type = control.GetType()
switch type
case 'DropDownList':
control.Remove.Item();
case 'TextBox':
control.Text = "";
etc. etc.
What I don't want to do is to have to type in each control instance name and
reset the values one by one.
Is this possible?
If yes, would you please write a small example or point me to a MS:Help
file/page you found that in.
Thanks very much.
- js.
John Smith Guest
-
Refering to <asp:> webcontrols
Hey, Question, how can i create client-side javascript that refers to a asp.net webcontrol. For example set the focus of a textbox lik this. ... -
Serious issues with webcontrols...
Hi, First of all, sorry for cross-posting, but some groups look more active than others, and I sure need to find an answer to this. I recently... -
IE WebControls
Hi, Downloaded IEWebControls.exe application & run on local machine O/S: Win Advance Server 2000 Framework: 1.1 Notes: * During installation... -
IE Webcontrols - Tabstrip
So has anyone worked with the IE webcontrols much? I've found that they've come in very handy for Internet Explorer clients ... ON A WINDOWS... -
WebControls Button
I have 2 HTML buttons and 1 WebControls Button on my page. I have set the 'CausesValidation' attribute of my WebControls button to False in the... -
Natty Gur #2
Re: Clearing values in WebControls
John Hi,
Did you consider using the old (HTML) Reset button?
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
John Smith #3
Re: Clearing values in WebControls
Doooooh!!!
Much thanks Nat.
I feel so silly.
-js
"Natty Gur" <natty@dao2com.com> wrote in message news:OARxOsfPDHA.3152@TK2MSFTNGP10.phx.gbl...
John Hi,
Did you consider using the old (HTML) Reset button?
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
John Smith Guest



Reply With Quote

