473,738 Members | 2,645 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ValidationSumma ry Issues

Hi there,

Please please could someone shed some like on a problem that I'm having
using a combination of Wizards, ValidationGroup s and ValidationSumma ry
controls. What I want to do is to have a wizard that will take me through
several steps, and at each step validate input data using
RequiredFieldVa lidators etc. displaying any errors in a Validation Summary.
The problem that I have is that I cannot seem to have a ValidationSumma ry
control on each step of the wizard and get client side validation to take
place. If I remove the summary control from the second step of the wizard,
then all is well and client side validation takes place.

I've broken the problem down to it's most simple form see code below which
demonstrates the problem.

I've struggled for many hours to track the problem down to this, so I'm
hoping that some kind person can show me the error of my ways or provide an
acceptable work around. I do need to have the summary panel on each step
though, so thinking caps on..

Thanks in advance

Andy
<h1>If you can leave the edit control empty and click on the next button
then the client side validation is NOT working!</h1>

<asp:Wizard ID="Wizard1" runat="server" DisplaySideBar= "false">

<WizardSteps>

<asp:WizardSt ep runat="server" Title="Step 1">

</asp:WizardStep>

<asp:WizardSt ep runat="server" Title="Step 2">

</asp:WizardStep>

</WizardSteps>

<StartNavigatio nTemplate>

<asp:Label ID="_lblPostCod e" runat="server"
AssociatedContr olID="_txtPostC ode">PostCode: </asp:Label>

<asp:TextBox ID="_txtPostCod e" runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator1" runat="server"
ControlToValida te="_txtPostCod e"

ErrorMessage="A postcode need is required and must be in the form BN43 5HF."
ToolTip="A postcode is is required."

ValidationGroup ="_register" >*</asp:RequiredFie ldValidator>

<asp:Button ID="Button1" runat="server" Text="Next" CommandName="Mo veNext"
ValidationGroup ="_register"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_register" />

</StartNavigation Template>

<FinishNavigati onTemplate>

<asp:Label ID="_lblExpiry " runat="server"
AssociatedContr olID="_txtExpir y">Expiry:</asp:Label>

<asp:TextBox ID="_txtExpiry " runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator2" runat="server"
ControlToValida te="_txtExpiry "

ErrorMessage="A card expiry date is required and must be in the form MM/YY."
ToolTip="A card expiry date is required."

ValidationGroup ="_expiry">* </asp:RequiredFie ldValidator>

<asp:Button ID="Button2" runat="server" Text="Finished"
CommandName="Mo veEnd" ValidationGroup ="_expiry"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_expiry" />

</FinishNavigatio nTemplate>

</asp:Wizard>

May 3 '06 #1
2 1803
Why don't you move the validation summary outside the wizard control. try
that lets see if it works
"Code Rodent" <Co********@noe mail.noemail.co m> wrote in message
news:eY******** ******@TK2MSFTN GP05.phx.gbl...
Hi there,

Please please could someone shed some like on a problem that I'm having
using a combination of Wizards, ValidationGroup s and ValidationSumma ry
controls. What I want to do is to have a wizard that will take me through
several steps, and at each step validate input data using
RequiredFieldVa lidators etc. displaying any errors in a Validation
Summary. The problem that I have is that I cannot seem to have a
ValidationSumma ry control on each step of the wizard and get client side
validation to take place. If I remove the summary control from the second
step of the wizard, then all is well and client side validation takes
place.

I've broken the problem down to it's most simple form see code below which
demonstrates the problem.

I've struggled for many hours to track the problem down to this, so I'm
hoping that some kind person can show me the error of my ways or provide
an acceptable work around. I do need to have the summary panel on each
step though, so thinking caps on..

Thanks in advance

Andy
<h1>If you can leave the edit control empty and click on the next button
then the client side validation is NOT working!</h1>

<asp:Wizard ID="Wizard1" runat="server" DisplaySideBar= "false">

<WizardSteps>

<asp:WizardSt ep runat="server" Title="Step 1">

</asp:WizardStep>

<asp:WizardSt ep runat="server" Title="Step 2">

</asp:WizardStep>

</WizardSteps>

<StartNavigatio nTemplate>

<asp:Label ID="_lblPostCod e" runat="server"
AssociatedContr olID="_txtPostC ode">PostCode: </asp:Label>

<asp:TextBox ID="_txtPostCod e" runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator1" runat="server"
ControlToValida te="_txtPostCod e"

ErrorMessage="A postcode need is required and must be in the form BN43
5HF." ToolTip="A postcode is is required."

ValidationGroup ="_register" >*</asp:RequiredFie ldValidator>

<asp:Button ID="Button1" runat="server" Text="Next" CommandName="Mo veNext"
ValidationGroup ="_register"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_register" />

</StartNavigation Template>

<FinishNavigati onTemplate>

<asp:Label ID="_lblExpiry " runat="server"
AssociatedContr olID="_txtExpir y">Expiry:</asp:Label>

<asp:TextBox ID="_txtExpiry " runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator2" runat="server"
ControlToValida te="_txtExpiry "

ErrorMessage="A card expiry date is required and must be in the form
MM/YY." ToolTip="A card expiry date is required."

ValidationGroup ="_expiry">* </asp:RequiredFie ldValidator>

<asp:Button ID="Button2" runat="server" Text="Finished"
CommandName="Mo veEnd" ValidationGroup ="_expiry"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_expiry" />

</FinishNavigatio nTemplate>

</asp:Wizard>

May 3 '06 #2
Unfortunately I cannot have the summary outside of the wizard control as it
would appear beneath the Next/Prev/Cancel buttons and look rather odd. I
have tried that and it does work, it's just not aesthetically pleasing.

Thanks all the same

Andy
"Onwuka Emeka" <bu******@hotma il.com> wrote in message
news:el******** *****@TK2MSFTNG P04.phx.gbl...
Why don't you move the validation summary outside the wizard control. try
that lets see if it works
"Code Rodent" <Co********@noe mail.noemail.co m> wrote in message
news:eY******** ******@TK2MSFTN GP05.phx.gbl...
Hi there,

Please please could someone shed some like on a problem that I'm having
using a combination of Wizards, ValidationGroup s and ValidationSumma ry
controls. What I want to do is to have a wizard that will take me
through several steps, and at each step validate input data using
RequiredFieldVa lidators etc. displaying any errors in a Validation
Summary. The problem that I have is that I cannot seem to have a
ValidationSumma ry control on each step of the wizard and get client side
validation to take place. If I remove the summary control from the
second step of the wizard, then all is well and client side validation
takes place.

I've broken the problem down to it's most simple form see code below
which demonstrates the problem.

I've struggled for many hours to track the problem down to this, so I'm
hoping that some kind person can show me the error of my ways or provide
an acceptable work around. I do need to have the summary panel on each
step though, so thinking caps on..

Thanks in advance

Andy
<h1>If you can leave the edit control empty and click on the next button
then the client side validation is NOT working!</h1>

<asp:Wizard ID="Wizard1" runat="server" DisplaySideBar= "false">

<WizardSteps>

<asp:WizardSt ep runat="server" Title="Step 1">

</asp:WizardStep>

<asp:WizardSt ep runat="server" Title="Step 2">

</asp:WizardStep>

</WizardSteps>

<StartNavigatio nTemplate>

<asp:Label ID="_lblPostCod e" runat="server"
AssociatedContr olID="_txtPostC ode">PostCode: </asp:Label>

<asp:TextBox ID="_txtPostCod e" runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator1" runat="server"
ControlToValida te="_txtPostCod e"

ErrorMessage="A postcode need is required and must be in the form BN43
5HF." ToolTip="A postcode is is required."

ValidationGroup ="_register" >*</asp:RequiredFie ldValidator>

<asp:Button ID="Button1" runat="server" Text="Next"
CommandName="Mo veNext" ValidationGroup ="_register"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_register" />

</StartNavigation Template>

<FinishNavigati onTemplate>

<asp:Label ID="_lblExpiry " runat="server"
AssociatedContr olID="_txtExpir y">Expiry:</asp:Label>

<asp:TextBox ID="_txtExpiry " runat="server"> </asp:TextBox>

<asp:RequiredFi eldValidator ID="RequiredFie ldValidator2" runat="server"
ControlToValida te="_txtExpiry "

ErrorMessage="A card expiry date is required and must be in the form
MM/YY." ToolTip="A card expiry date is required."

ValidationGroup ="_expiry">* </asp:RequiredFie ldValidator>

<asp:Button ID="Button2" runat="server" Text="Finished"
CommandName="Mo veEnd" ValidationGroup ="_expiry"/>

<asp:Validation Summary ID="changePassw ordSummary" runat="server"
ValidationGroup ="_expiry" />

</FinishNavigatio nTemplate>

</asp:Wizard>


May 4 '06 #3

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

Similar topics

0
378
by: newusertodotnet | last post by:
I'm trying to add a ValidationSummary control to a common base page used by all of our system's aspx/ascx files. The base page is a regular class file that inherits from System.Web.UI.Page. When I debug the application and click the submit button with a data element that fails a validation, I get the correct ValidationSummary messageBox, but I then receive the following error in WebUIValidation.js ValidationSummaryOnSubmit(): Microsoft...
0
1996
by: John Mabbott | last post by:
Hello all, We're getting some weird behavior with the ValidationSummary control. If I submit a page that fires some validators, the ValidationSummary displays them correctly. However, if I subsequently submit the page, the ValidationSummary control briefly disappears before re-appearing again! So, to recap: 1. I load one of my pages 2. I don't fill any of the input boxes and submit the page, causing
3
4966
by: Christer | last post by:
Hi all! I recently created a MessageBox webcontrol for asp.net. This can be used as is, but I also want to take ude of it in other webcontrols. Right now i creating a ValidationSummary control, that makes use of my messagebox to show the summary of failing validators. So far I've been successfull achieving this. However, the serverside nature of the MessageBox currently forces all validators (and the validationsummary) to have...
1
360
by: mg | last post by:
Is there a way to include in a ValidationSummary an error message that says that an exception was thrown or that an if/else test went to 'else' ?
2
2436
by: Sunil Sabir | last post by:
Dear All, I am using ValidationSummary,RequiredField Validator and Regular Expression Validator in my ASP.net form. I want to display error messages only in the ValidationSummary Control. But when I run the form the messages are displayed ValidationSummary,RequiredField Validator and Regular Expression Validator together . Is it possible that the message is displayed only in ValidationSummary control and not in RequiredFieldValidator...
1
1847
by: SMG | last post by:
Hi All. My forms has two textboxes, 1 username, 2 password. Both has requiredfield validator it works fine when there is no input in these textboxes. And the errorMsg is shown in ValidationSummary. Now I want to check the username should contain only chatacters, ( I want to use customvalidator), when i enter char+number it trap the event of customvalidator but it doesn't show the errormsg in the customValidator and submits the form.
1
2459
by: Dan Sikorsky | last post by:
I'm using SmartNavigation and need to automatically scroll to the top of the page when the ValidationSummary control catches errors and displays them, so that the user can see the errors without having to manually scroll to the top. How can I determine if the ValidationSummary will display errors so that I can issue a javascript window.scrollTo(0,0) or document.body.scrollTop = 0 (or something more appropriate) to automatically scroll to...
1
3918
by: Ken Varn | last post by:
If a page has multiple ValidationSummary controls, how does it distinguish which ValidationControls are associated with which ValidationSummary controls? The reason I am asking this is that I want to display a Message Box for the validation message on my Validation controls. My validation control is embedded within a custom server control. If my custom server control adds a ValidationSummary control, I am afraid that it may conflict...
0
1805
by: Code Rodent | last post by:
Hi there, Please please could someone shed some like on a problem that I'm having using a combination of Wizards, ValidationGroups and ValidationSummary controls. What I want to do is to have a wizard that will take me through several steps, and at each step validate input data using RequiredFieldValidators etc. displaying any errors in a Validation Summary. The problem that I have is that I cannot seem to have a ValidationSummary...
0
8968
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8787
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9334
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9259
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9208
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8208
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6750
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4569
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.