Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Validators on dynamic UserControls

Reply
Thread Tools

Validators on dynamic UserControls

 
 
rgparkins@hotmail.com
Guest
Posts: n/a
 
      02-20-2006
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

 
Reply With Quote
 
 
 
 
rgparkins@hotmail.com
Guest
Posts: n/a
 
      02-21-2006
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

 
Reply With Quote
 
 
 
 
webonomic
Guest
Posts: n/a
 
      02-22-2006
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


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


 
Reply With Quote
 
Peter Blum
Guest
Posts: n/a
 
      02-23-2006
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:
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx

<> wrote in message
news: 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
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Validators to validate UserControls Nathan Sokalski ASP .Net Web Controls 0 09-05-2008 01:29 PM
Using Validators to validate UserControls Nathan Sokalski ASP .Net 0 09-05-2008 01:29 PM
DropDownList & Dynamic UserControls ayende@gmail.com ASP .Net 1 11-21-2005 10:11 AM
Regular Expression validators NOT working, Required Field validators ARE working Ratman ASP .Net 0 09-14-2004 09:36 PM
ViewState, Dynamic UserControls, and the Back Button John Hamm ASP .Net 1 11-08-2003 07:54 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57