473,406 Members | 2,620 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,406 software developers and data experts.

validation control headache

NuB
The validation controls are giving me a headache. here is what i'm trying to
do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to go
away. How can i hide and show controls and labels bases on the page.isvalid

has anyone done this before
Dec 21 '05 #1
12 1316
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose, since
your page should not be ablt to postback until all validations are
passed...unless you want to do some extra server-side validation, and then I
think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
The validation controls are giving me a headache. here is what i'm trying
to do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to go
away. How can i hide and show controls and labels bases on the
page.isvalid

has anyone done this before

Dec 21 '05 #2
NuB
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a user to
do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field state
is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose, since
your page should not be ablt to postback until all validations are
passed...unless you want to do some extra server-side validation, and then
I think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
The validation controls are giving me a headache. here is what i'm trying
to do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to go
away. How can i hide and show controls and labels bases on the
page.isvalid

has anyone done this before


Dec 21 '05 #3
I think you should read a little bit about validators...validators are not
just for displaying messages, you can use them to keep the user in the page
until all requiered fields (textboxes, radiobuttons, checkboxes, etc..) are
validated. What I was saying in the previous message is that you can just
check your textboxes for a value ex: if ( this.TextBox1.Text != "" ) {//do
something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a user
to do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field
state is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose, since
your page should not be ablt to postback until all validations are
passed...unless you want to do some extra server-side validation, and
then I think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
The validation controls are giving me a headache. here is what i'm
trying to do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to
go away. How can i hide and show controls and labels bases on the
page.isvalid

has anyone done this before



Dec 21 '05 #4
NuB
yes i know, I didn't create this app, I just started working on it and they
have several validators for required
"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
I think you should read a little bit about validators...validators are not
just for displaying messages, you can use them to keep the user in the page
until all requiered fields (textboxes, radiobuttons, checkboxes, etc..) are
validated. What I was saying in the previous message is that you can just
check your textboxes for a value ex: if ( this.TextBox1.Text != "" ) {//do
something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a user
to do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field
state is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose, since
your page should not be ablt to postback until all validations are
passed...unless you want to do some extra server-side validation, and
then I think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
The validation controls are giving me a headache. here is what i'm
trying to do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to
go away. How can i hide and show controls and labels bases on the
page.isvalid

has anyone done this before



Dec 21 '05 #5
NuB
yes i know, I didn't create this app, I just started working on it and they
have several validators for required fields, make sure they are the correct
length, and that some are numeric.
so i need to keep the current flow and existing code and just work with that
is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
I think you should read a little bit about validators...validators are not
just for displaying messages, you can use them to keep the user in the page
until all requiered fields (textboxes, radiobuttons, checkboxes, etc..) are
validated. What I was saying in the previous message is that you can just
check your textboxes for a value ex: if ( this.TextBox1.Text != "" ) {//do
something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a user
to do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field
state is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose, since
your page should not be ablt to postback until all validations are
passed...unless you want to do some extra server-side validation, and
then I think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
The validation controls are giving me a headache. here is what i'm
trying to do and so far what I've tried has not worked.

I need to hide my grid if the page is not valid
how can i accomplish that?

I have one validation control that gives an error if there is no data
returned, so if the page is not valid on another search i need that to
go away. How can i hide and show controls and labels bases on the
page.isvalid

has anyone done this before



Dec 21 '05 #6
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
yes i know, I didn't create this app, I just started working on it and
they
have several validators for required fields, make sure they are the
correct length, and that some are numeric.
so i need to keep the current flow and existing code and just work with
that is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
I think you should read a little bit about validators...validators are not
just for displaying messages, you can use them to keep the user in the
page until all requiered fields (textboxes, radiobuttons, checkboxes,
etc..) are validated. What I was saying in the previous message is that
you can just check your textboxes for a value ex: if ( this.TextBox1.Text
!= "" ) {//do something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a user
to do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field
state is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
why dont you just check for the required data in the code?
it seem that you are using the validators for a different purpose,
since your page should not be ablt to postback until all validations
are passed...unless you want to do some extra server-side validation,
and then I think you dont need the validation web controls for that.
Hope that helps.
Alex.
"NuB" <me@me.com> wrote in message
news:O2*************@TK2MSFTNGP12.phx.gbl...
> The validation controls are giving me a headache. here is what i'm
> trying to do and so far what I've tried has not worked.
>
> I need to hide my grid if the page is not valid
> how can i accomplish that?
>
> I have one validation control that gives an error if there is no data
> returned, so if the page is not valid on another search i need that to
> go away. How can i hide and show controls and labels bases on the
> page.isvalid
>
> has anyone done this before
>



Dec 21 '05 #7
NuB
is there anyway to really get the grid.visible = false with using the
validationsummary controls, required field control, etc?

"Alex D." <al********@hotmail.com> wrote in message
news:uH**************@tk2msftngp13.phx.gbl...
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
yes i know, I didn't create this app, I just started working on it and
they
have several validators for required fields, make sure they are the
correct length, and that some are numeric.
so i need to keep the current flow and existing code and just work with
that is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
I think you should read a little bit about validators...validators are
not just for displaying messages, you can use them to keep the user in
the page until all requiered fields (textboxes, radiobuttons, checkboxes,
etc..) are validated. What I was saying in the previous message is that
you can just check your textboxes for a value ex: if ( this.TextBox1.Text
!= "" ) {//do something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
i'm not following;

what happens is this: I have 4 text boxes on my web form to allow a
user to do a search.
If all textboxes are populated a grid with results is populated and
displayed, then if the user
decides to do another search and misses a textbox, the required field
state is missing message is displayed, THEN if
that message is visible I then need to hide the grid from the prior
successful search.


"Alex D." <al********@hotmail.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
> why dont you just check for the required data in the code?
> it seem that you are using the validators for a different purpose,
> since your page should not be ablt to postback until all validations
> are passed...unless you want to do some extra server-side validation,
> and then I think you dont need the validation web controls for that.
> Hope that helps.
> Alex.
>
>
> "NuB" <me@me.com> wrote in message
> news:O2*************@TK2MSFTNGP12.phx.gbl...
>> The validation controls are giving me a headache. here is what i'm
>> trying to do and so far what I've tried has not worked.
>>
>> I need to hide my grid if the page is not valid
>> how can i accomplish that?
>>
>> I have one validation control that gives an error if there is no data
>> returned, so if the page is not valid on another search i need that
>> to go away. How can i hide and show controls and labels bases on the
>> page.isvalid
>>
>> has anyone done this before
>>
>
>



Dec 21 '05 #8
foreach (Control c in this.Page) { if (c is BaseValidator && !(c as
BaseValidator).EvaluateIsValid()) this.DataGrid1.Visible = false; }

ALEX.

"NuB" <me@me.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
is there anyway to really get the grid.visible = false with using the
validationsummary controls, required field control, etc?

"Alex D." <al********@hotmail.com> wrote in message
news:uH**************@tk2msftngp13.phx.gbl...
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
yes i know, I didn't create this app, I just started working on it and
they
have several validators for required fields, make sure they are the
correct length, and that some are numeric.
so i need to keep the current flow and existing code and just work with
that is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
I think you should read a little bit about validators...validators are
not just for displaying messages, you can use them to keep the user in
the page until all requiered fields (textboxes, radiobuttons,
checkboxes, etc..) are validated. What I was saying in the previous
message is that you can just check your textboxes for a value ex: if (
this.TextBox1.Text != "" ) {//do something}

alex.

"NuB" <me@me.com> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
> i'm not following;
>
> what happens is this: I have 4 text boxes on my web form to allow a
> user to do a search.
> If all textboxes are populated a grid with results is populated and
> displayed, then if the user
> decides to do another search and misses a textbox, the required field
> state is missing message is displayed, THEN if
> that message is visible I then need to hide the grid from the prior
> successful search.
>
>
>
>
> "Alex D." <al********@hotmail.com> wrote in message
> news:%2***************@TK2MSFTNGP12.phx.gbl...
>> why dont you just check for the required data in the code?
>> it seem that you are using the validators for a different purpose,
>> since your page should not be ablt to postback until all validations
>> are passed...unless you want to do some extra server-side validation,
>> and then I think you dont need the validation web controls for that.
>> Hope that helps.
>> Alex.
>>
>>
>> "NuB" <me@me.com> wrote in message
>> news:O2*************@TK2MSFTNGP12.phx.gbl...
>>> The validation controls are giving me a headache. here is what i'm
>>> trying to do and so far what I've tried has not worked.
>>>
>>> I need to hide my grid if the page is not valid
>>> how can i accomplish that?
>>>
>>> I have one validation control that gives an error if there is no
>>> data returned, so if the page is not valid on another search i need
>>> that to go away. How can i hide and show controls and labels bases
>>> on the page.isvalid
>>>
>>> has anyone done this before
>>>
>>
>>
>
>



Dec 21 '05 #9
break;
"Alex D." <al********@hotmail.com> wrote in message
news:ur**************@TK2MSFTNGP15.phx.gbl...
foreach (Control c in this.Page) { if (c is BaseValidator && !(c as
BaseValidator).EvaluateIsValid()) this.DataGrid1.Visible = false; }

ALEX.

"NuB" <me@me.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
is there anyway to really get the grid.visible = false with using the
validationsummary controls, required field control, etc?

"Alex D." <al********@hotmail.com> wrote in message
news:uH**************@tk2msftngp13.phx.gbl...
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
yes i know, I didn't create this app, I just started working on it and
they
have several validators for required fields, make sure they are the
correct length, and that some are numeric.
so i need to keep the current flow and existing code and just work with
that is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
>I think you should read a little bit about validators...validators are
>not just for displaying messages, you can use them to keep the user in
>the page until all requiered fields (textboxes, radiobuttons,
>checkboxes, etc..) are validated. What I was saying in the previous
>message is that you can just check your textboxes for a value ex: if
>( this.TextBox1.Text != "" ) {//do something}
>
> alex.
>
>
>
> "NuB" <me@me.com> wrote in message
> news:%2***************@TK2MSFTNGP12.phx.gbl...
>> i'm not following;
>>
>> what happens is this: I have 4 text boxes on my web form to allow a
>> user to do a search.
>> If all textboxes are populated a grid with results is populated and
>> displayed, then if the user
>> decides to do another search and misses a textbox, the required field
>> state is missing message is displayed, THEN if
>> that message is visible I then need to hide the grid from the prior
>> successful search.
>>
>>
>>
>>
>> "Alex D." <al********@hotmail.com> wrote in message
>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>>> why dont you just check for the required data in the code?
>>> it seem that you are using the validators for a different purpose,
>>> since your page should not be ablt to postback until all validations
>>> are passed...unless you want to do some extra server-side
>>> validation, and then I think you dont need the validation web
>>> controls for that.
>>> Hope that helps.
>>> Alex.
>>>
>>>
>>> "NuB" <me@me.com> wrote in message
>>> news:O2*************@TK2MSFTNGP12.phx.gbl...
>>>> The validation controls are giving me a headache. here is what i'm
>>>> trying to do and so far what I've tried has not worked.
>>>>
>>>> I need to hide my grid if the page is not valid
>>>> how can i accomplish that?
>>>>
>>>> I have one validation control that gives an error if there is no
>>>> data returned, so if the page is not valid on another search i need
>>>> that to go away. How can i hide and show controls and labels bases
>>>> on the page.isvalid
>>>>
>>>> has anyone done this before
>>>>
>>>
>>>
>>
>>
>
>



Dec 21 '05 #10
NuB
would that go in the page load or my button click method?
"Alex D." <al********@hotmail.com> wrote in message
news:ur**************@TK2MSFTNGP15.phx.gbl...
foreach (Control c in this.Page) { if (c is BaseValidator && !(c as
BaseValidator).EvaluateIsValid()) this.DataGrid1.Visible = false; }

ALEX.

"NuB" <me@me.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
is there anyway to really get the grid.visible = false with using the
validationsummary controls, required field control, etc?

"Alex D." <al********@hotmail.com> wrote in message
news:uH**************@tk2msftngp13.phx.gbl...
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
yes i know, I didn't create this app, I just started working on it and
they
have several validators for required fields, make sure they are the
correct length, and that some are numeric.
so i need to keep the current flow and existing code and just work with
that is already there.

so i'll research it some more

"Alex D." <al********@hotmail.com> wrote in message
news:ee**************@TK2MSFTNGP11.phx.gbl...
>I think you should read a little bit about validators...validators are
>not just for displaying messages, you can use them to keep the user in
>the page until all requiered fields (textboxes, radiobuttons,
>checkboxes, etc..) are validated. What I was saying in the previous
>message is that you can just check your textboxes for a value ex: if
>( this.TextBox1.Text != "" ) {//do something}
>
> alex.
>
>
>
> "NuB" <me@me.com> wrote in message
> news:%2***************@TK2MSFTNGP12.phx.gbl...
>> i'm not following;
>>
>> what happens is this: I have 4 text boxes on my web form to allow a
>> user to do a search.
>> If all textboxes are populated a grid with results is populated and
>> displayed, then if the user
>> decides to do another search and misses a textbox, the required field
>> state is missing message is displayed, THEN if
>> that message is visible I then need to hide the grid from the prior
>> successful search.
>>
>>
>>
>>
>> "Alex D." <al********@hotmail.com> wrote in message
>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>>> why dont you just check for the required data in the code?
>>> it seem that you are using the validators for a different purpose,
>>> since your page should not be ablt to postback until all validations
>>> are passed...unless you want to do some extra server-side
>>> validation, and then I think you dont need the validation web
>>> controls for that.
>>> Hope that helps.
>>> Alex.
>>>
>>>
>>> "NuB" <me@me.com> wrote in message
>>> news:O2*************@TK2MSFTNGP12.phx.gbl...
>>>> The validation controls are giving me a headache. here is what i'm
>>>> trying to do and so far what I've tried has not worked.
>>>>
>>>> I need to hide my grid if the page is not valid
>>>> how can i accomplish that?
>>>>
>>>> I have one validation control that gives an error if there is no
>>>> data returned, so if the page is not valid on another search i need
>>>> that to go away. How can i hide and show controls and labels bases
>>>> on the page.isvalid
>>>>
>>>> has anyone done this before
>>>>
>>>
>>>
>>
>>
>
>



Dec 21 '05 #11
in the page load..I guess

"NuB" <me@me.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
would that go in the page load or my button click method?
"Alex D." <al********@hotmail.com> wrote in message
news:ur**************@TK2MSFTNGP15.phx.gbl...
foreach (Control c in this.Page) { if (c is BaseValidator && !(c as
BaseValidator).EvaluateIsValid()) this.DataGrid1.Visible = false; }

ALEX.

"NuB" <me@me.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
is there anyway to really get the grid.visible = false with using the
validationsummary controls, required field control, etc?

"Alex D." <al********@hotmail.com> wrote in message
news:uH**************@tk2msftngp13.phx.gbl...
ok, I understand.
"NuB" <me@me.com> wrote in message
news:uu****************@TK2MSFTNGP10.phx.gbl...
> yes i know, I didn't create this app, I just started working on it and
> they
> have several validators for required fields, make sure they are the
> correct length, and that some are numeric.
> so i need to keep the current flow and existing code and just work
> with that is already there.
>
> so i'll research it some more
>
>
>
> "Alex D." <al********@hotmail.com> wrote in message
> news:ee**************@TK2MSFTNGP11.phx.gbl...
>>I think you should read a little bit about validators...validators are
>>not just for displaying messages, you can use them to keep the user in
>>the page until all requiered fields (textboxes, radiobuttons,
>>checkboxes, etc..) are validated. What I was saying in the previous
>>message is that you can just check your textboxes for a value ex: if
>>( this.TextBox1.Text != "" ) {//do something}
>>
>> alex.
>>
>>
>>
>> "NuB" <me@me.com> wrote in message
>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>>> i'm not following;
>>>
>>> what happens is this: I have 4 text boxes on my web form to allow a
>>> user to do a search.
>>> If all textboxes are populated a grid with results is populated and
>>> displayed, then if the user
>>> decides to do another search and misses a textbox, the required
>>> field state is missing message is displayed, THEN if
>>> that message is visible I then need to hide the grid from the prior
>>> successful search.
>>>
>>>
>>>
>>>
>>> "Alex D." <al********@hotmail.com> wrote in message
>>> news:%2***************@TK2MSFTNGP12.phx.gbl...
>>>> why dont you just check for the required data in the code?
>>>> it seem that you are using the validators for a different purpose,
>>>> since your page should not be ablt to postback until all
>>>> validations are passed...unless you want to do some extra
>>>> server-side validation, and then I think you dont need the
>>>> validation web controls for that.
>>>> Hope that helps.
>>>> Alex.
>>>>
>>>>
>>>> "NuB" <me@me.com> wrote in message
>>>> news:O2*************@TK2MSFTNGP12.phx.gbl...
>>>>> The validation controls are giving me a headache. here is what i'm
>>>>> trying to do and so far what I've tried has not worked.
>>>>>
>>>>> I need to hide my grid if the page is not valid
>>>>> how can i accomplish that?
>>>>>
>>>>> I have one validation control that gives an error if there is no
>>>>> data returned, so if the page is not valid on another search i
>>>>> need that to go away. How can i hide and show controls and labels
>>>>> bases on the page.isvalid
>>>>>
>>>>> has anyone done this before
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>



Dec 21 '05 #12
I think there should be a way to execute validation code on server
side. So whenever you post your server side validation executed and
based on the result of validation you can show hide your grid.

Correct me if I am wrong.

B

Dec 22 '05 #13

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

Similar topics

6
by: Kenneth | last post by:
Hello, I'm having some serious problems debugging a script that I'm trying to make work. I'm working on a form where a user can type in a time (in the format of HH:MM), and another script...
4
by: Tim Meagher | last post by:
I am trying to use both validation controls and to add submit button attributes, but when I add the button attributes, the javascript fpr the validation controls is no longer created for the page. ...
6
by: Nedu N | last post by:
Hi, I want to have confirmation(Yes/No) on a button of the webform in which there are many validation controls. I want all the validation controls to be triggered first and then Yes/No...
7
by: A.M | last post by:
Hi, I have a validation control in my page that upon any invalid data, it disables all buttons in the page. basicly i don't have any postback in the page if the validator finds any error. How...
14
by: Matt | last post by:
I want to know if ASP.NET Web Forms Validation Controls are Server-Side or Client-Side form validation? Since I think each validator control can select either 1) JavaScript based error dialog or 2)...
2
by: Martyn Fewtrell | last post by:
Dear All I have a Windows 2003 Server with IIS6 where the validation controls on ASP.Net pages no longer work. I believe it to be specific to the server as if I create an ASP.Net page on the...
2
by: Barbara Alderton | last post by:
I setup some standard Required Field Validation controls and one Custom validation control on an ASP.NET page (within a user control) to validate text entry. I also setup a Summary Control to post...
9
by: AFN | last post by:
I was just dropped into someone else's code (isn't that always so fun?). I can't figure out why a custom validation control's server event function is executing. There is nothing (that I see)...
2
by: Tim Frawley | last post by:
Source code attached indicates my problem with validation and a button bar save button. Fill the Textbox with some text then tab off the control. The message box will display the text in the...
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
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?
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.