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

Validators on dynamic UserControls

Hi

I am currently having problems with Validators in a user control. I am
creating a wizard sign-up process which have the allocated step
(hyperlinks" at the top of the page. A user can also click
next/previous. Dependant on the current step in the sign-up process I
am loading a new user control as I dont want to have 7-8 pages, just
one page and load the control dynamically.

All is sweet at the moment apart from the validation controls that are
assigned to each user control. Any link that is clicked or button that
is clicked should cause validation on that user control, however I have
performed the following (from another thread)

1. Set EnableClientScript=false on each validator.
2. Set CausesValidation=false on each button that submits the page.
This
prevents the Page.Validate() method from begin called automatically by
the
button.
3. In your click event method, you will call the Validate() method on
each
validator that is associated with the submit button. Then you will test
the
IsValid property to be true on each validator before saving.

I am performing this process BUT as I loop on each validate control
with the allocated user control the isValid IS ALWAYS true. I am sure
its something to do with not loading something or just a simple step I
have missed.. I would appreciate any help on this, some code:

private bool Persist() {
//first check whether we have valid data
AddStockCommon ctrl =
(AddStockCommon)this.FindControl(String.Format("{0 }{1}",
ViewState["Context"], ".ascx"));

foreach(Control ct in ctrl.Controls) {
if (ct is BaseValidator) {
BaseValidator validator = (BaseValidator)ct;
validator.Validate();

if (!validator.IsValid) {
return false;
}
}

return true;
}
Many thanks

Richard

Feb 20 '06 #1
3 1917
OK

To anyone out there..... Further investigations yielded no solutions
until I decided to make the validators visible (They were set invisible
as I wanted a summary to appear only).

Setting them Visible suddenly made the client side validators work on
the browser, but I have to say that this looks clunky and totally
unusable, (mabe my designer could do something :))

I am now going to do my own checks on the server upon a post back, as
this will say me time understanding these validators which to all
intents and purposes seem like a last minute thought to .NET 1.1.

I hope they have improved on .NET 2.0, and if anyone can either point
me in the right direction then I'll maybe return to this validation
technique but for now its easier (on the eye and technically) to
perform all validation server side...

If anyone can tell me why setting these validators Invisible affects
how they work then I would be glad to hear.

Many thanks

Richard

Feb 21 '06 #2
Check out the image in this article. They talk about the same thing,
that the validation summary is ugly.

http://www.codeproject.com/aspnet/vsum.asp

There may be a solution here as well
http://www.asp101.com/articles/manu/...ry/default.asp

jp
rg*******@hotmail.com wrote:
OK

To anyone out there..... Further investigations yielded no solutions
until I decided to make the validators visible (They were set invisible
as I wanted a summary to appear only).

Setting them Visible suddenly made the client side validators work on
the browser, but I have to say that this looks clunky and totally
unusable, (mabe my designer could do something :))

I am now going to do my own checks on the server upon a post back, as
this will say me time understanding these validators which to all
intents and purposes seem like a last minute thought to .NET 1.1.

I hope they have improved on .NET 2.0, and if anyone can either point
me in the right direction then I'll maybe return to this validation
technique but for now its easier (on the eye and technically) to
perform all validation server side...

If anyone can tell me why setting these validators Invisible affects
how they work then I would be glad to hear.

Many thanks

Richard


Feb 22 '06 #3
By definition, when any web control has Visible=false, that turns off the
control. It will not generate anything to the client-side. It isn't a style
that shows and hide things. (Besides the validators have the job of showing
and hiding themselves.) Since the validator is off when Visible=false, the
call to Validator.Validate() or even Page.Validate() will do nothing to the
validator.

Recommendation: Use Validation Groups, one for each page. This comes with
ASP.NET 2.0 and my Professional Validation And More
(http://www.peterblum.com/vam/home.aspx) which works with all versions of
ASP.NET.
Setting them Visible suddenly made the client side validators work on
the browser, but I have to say that this looks clunky and totally
unusable, (mabe my designer could do something :))

If you set EnableClientScript=false on each validator, there should be no
client-side validation. Confirm these settings.
What does "looks clunky" mean? One guess is that validators are changing
their spacing on the screen, moving things around. Use
Validator.Display=Static or set the Text property to "*" and add a
ValidationSummary to show the actual error.

--- Peter Blum
www.PeterBlum.com
Email: PL****@PeterBlum.com
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx

<rg*******@hotmail.com> wrote in message
news:11**********************@g14g2000cwa.googlegr oups.com... Hi

I am currently having problems with Validators in a user control. I am
creating a wizard sign-up process which have the allocated step
(hyperlinks" at the top of the page. A user can also click
next/previous. Dependant on the current step in the sign-up process I
am loading a new user control as I dont want to have 7-8 pages, just
one page and load the control dynamically.

All is sweet at the moment apart from the validation controls that are
assigned to each user control. Any link that is clicked or button that
is clicked should cause validation on that user control, however I have
performed the following (from another thread)

1. Set EnableClientScript=false on each validator.
2. Set CausesValidation=false on each button that submits the page.
This
prevents the Page.Validate() method from begin called automatically by
the
button.
3. In your click event method, you will call the Validate() method on
each
validator that is associated with the submit button. Then you will test
the
IsValid property to be true on each validator before saving.

I am performing this process BUT as I loop on each validate control
with the allocated user control the isValid IS ALWAYS true. I am sure
its something to do with not loading something or just a simple step I
have missed.. I would appreciate any help on this, some code:

private bool Persist() {
//first check whether we have valid data
AddStockCommon ctrl =
(AddStockCommon)this.FindControl(String.Format("{0 }{1}",
ViewState["Context"], ".ascx"));

foreach(Control ct in ctrl.Controls) {
if (ct is BaseValidator) {
BaseValidator validator = (BaseValidator)ct;
validator.Validate();

if (!validator.IsValid) {
return false;
}
}

return true;
}
Many thanks

Richard

Feb 23 '06 #4

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

Similar topics

1
by: Jim Heavey | last post by:
Hello I have a DataList control with a couple of text boxes and a couple of RequiredField Validators and Regular Expression Validators, but they are not doing anything. When I blank out the...
1
by: tshad | last post by:
Is there a way to tell the validators to not fire if one of the validators fails the input? For example: In the following code, if someone doesn't enter anything in the field, I should get...
7
by: Abraham Luna | last post by:
how do i stop the dynamic validators from breaking explorer if i use a dynamic validator and move to a different control it breaks explorer and i can type in the page when i'm not supposed to....
2
by: Mike Surcouf | last post by:
Hi I have some regex validators on my page set to dynamic and like the way they appear after you tab out of a field and also when you try to postback the form. All OK so far When I register...
0
by: tshad | last post by:
I have the following textbox and 3 validators. For some reason the message "A Password is required!" is displayed with a couple of spaces in front of it. My other validators don't seem to do...
1
by: Gummy | last post by:
Hello, I am loading several user controls dynamically in OnInit() like this: ucListBoxSelections ucLocation = (ucListBoxSelections)LoadControl("UserControls/ucListBoxSelections.ascx");
0
by: Mike Collins | last post by:
I have a form where I create dynamic controls at runtime. With this, I am adding a dynamic required field validators to each control as needed, but the validators are not firing when I click...
5
by: shapper | last post by:
Hello, Is there any way to make ASP.NET validators to display as block? I tried everything I could think off with skins, css, etc. I really don't know what else to try. Shouldn't this be...
0
by: Nathan Sokalski | last post by:
I have a UserControl that contains Controls I want to validate. I am attempting to write a class that inherits BaseValidator (which I have done many times before for the standard controls such as...
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: 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
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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.