Click here to Skip to main content
15,904,155 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Verifying a Certificate Chain by using x509certificate Pin
suprajav18-Jun-07 18:16
suprajav18-Jun-07 18:16 
Questionpopup window Pin
monuSaini18-Jun-07 3:24
monuSaini18-Jun-07 3:24 
AnswerRe: popup window Pin
Sathesh Sakthivel18-Jun-07 3:49
Sathesh Sakthivel18-Jun-07 3:49 
GeneralRe: popup window Pin
monuSaini18-Jun-07 22:07
monuSaini18-Jun-07 22:07 
QuestionX509Certificate Chain Verification process in .NET Pin
suprajav18-Jun-07 3:15
suprajav18-Jun-07 3:15 
QuestionUrgent How to create or Access Web service Globally using asp.net Pin
krishsenthilraj18-Jun-07 2:58
krishsenthilraj18-Jun-07 2:58 
AnswerRe: Urgent How to create or Access Web service Globally using asp.net Pin
RepliCrux18-Jun-07 12:57
RepliCrux18-Jun-07 12:57 
QuestionHow To Clear/Reset Controls in Panel Pin
dhulipudi18-Jun-07 2:41
dhulipudi18-Jun-07 2:41 
Hi,

I am unable to clear TextBoxes in panel. Generally I am using the following code to reset controls in webpage.

private void Reset()
{
foreach (Control control in Page.Controls)
foreach (Control childControl in control.Controls)
{
if (childControl is TextBox)
((TextBox)childControl).Text = string.Empty;

if (childControl is RadioButton)
((RadioButton)childControl).Checked = false;

if (childControl is CheckBox)
((CheckBox)childControl).Checked = false;
}
}

In it i have changed Page.Controls to Panel1.Controls, but its not working.

Please let me know how to reset all controls in Panel.

Regards,
JJ

Questionwhich control is used to display posted messages in codeproject forum? Pin
anujose18-Jun-07 2:35
anujose18-Jun-07 2:35 
AnswerRe: which control is used to display posted messages in codeproject forum? Pin
Tarakeshwar Reddy18-Jun-07 2:41
professionalTarakeshwar Reddy18-Jun-07 2:41 
Questionhow to bind gridview with an array Pin
kakani12318-Jun-07 1:57
kakani12318-Jun-07 1:57 
QuestionAlways Type Capital Words in Text Box Pin
fmlove18-Jun-07 1:55
fmlove18-Jun-07 1:55 
AnswerRe: Always Type Capital Words in Text Box Pin
Fatbuddha 118-Jun-07 2:05
Fatbuddha 118-Jun-07 2:05 
AnswerRe: Always Type Capital Words in Text Box Pin
Sylvester george18-Jun-07 2:10
Sylvester george18-Jun-07 2:10 
AnswerRe: Always Type Capital Words in Text Box Pin
RepliCrux18-Jun-07 2:16
RepliCrux18-Jun-07 2:16 
AnswerRe: Always Type Capital Words in Text Box Pin
aransiola18-Jun-07 10:01
aransiola18-Jun-07 10:01 
QuestionDisabling a link button Pin
Rajiya18-Jun-07 1:39
Rajiya18-Jun-07 1:39 
AnswerRe: Disabling a link button Pin
RepliCrux18-Jun-07 1:46
RepliCrux18-Jun-07 1:46 
GeneralRe: Disabling a link button Pin
Rajiya18-Jun-07 18:49
Rajiya18-Jun-07 18:49 
Questiongrid view edit drop down list selection Pin
Christian Graus18-Jun-07 1:24
protectorChristian Graus18-Jun-07 1:24 
AnswerRe: grid view edit drop down list selection Pin
Christian Graus18-Jun-07 1:34
protectorChristian Graus18-Jun-07 1:34 
QuestionAdding a row to a datatable Pin
gauthee18-Jun-07 1:22
gauthee18-Jun-07 1:22 
AnswerRe: Adding a row to a datatable Pin
RepliCrux18-Jun-07 1:31
RepliCrux18-Jun-07 1:31 
GeneralRe: Adding a row to a datatable Pin
gauthee18-Jun-07 1:46
gauthee18-Jun-07 1:46 
GeneralRe: Adding a row to a datatable Pin
RepliCrux18-Jun-07 1:52
RepliCrux18-Jun-07 1:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.