Tagged Questions
The comparevalidator tag has no wiki summary.
4
votes
1answer
98 views
Dropdownlist and field validation is causing a riot
For some reason, I can't get the validator to raise a flag when I do things wrong.
<asp:DropDownList ID="ddlTypeList" runat="server" DataSourceID="ods_TypeOptions" DataTextField="name" ...
2
votes
2answers
219 views
Time validation using CompareValidator
As a (sorta) follow on from the following question - CustomValidator time c#.net - I would like to know if it is possible to use the CompareValidator to validate a time in a ASP.NET textbox?
I have ...
1
vote
1answer
79 views
Comparevalidator on date type c#.net
how to solve this problem?
I am having the same problem related to this link which was not answered.
Can anyone help me.
<telerik:RadDatePicker ID="DateTextBox" runat="server" Culture="en-GB" ...
1
vote
2answers
68 views
ASP CompareValidator and NOT submitting form
I have a textbox and a submit button. The textbox is a date-entry field.
Attached to it, I have a compare validator with the type set to "date". It does validate and show an error message.
Problem ...
1
vote
1answer
49 views
How to hide CompareValidators and RegularExpressions until they are needed
I write in asp.net with c# code and some jscript.
I’m using CompareValidators and RegularExpressions to validate certain fields. This is working fine except for one problem. The exception messages ...
1
vote
1answer
201 views
Adding JS Validation on CompareValidator
is it possible to add a JS validation function for CompareValidator?
i can't use a CustomValidator.
1
vote
1answer
178 views
How do I get the Compare Validator to work server side?
I have this compare validator:
<asp:CompareValidator ID="cpvBirthDate" Type="Date" ControlToValidate="txtBirthDate" Operator="DataTypeCheck" runat="server" ErrorMessage="Please enter a valid date ...
1
vote
0answers
142 views
ASP.NET CompareValidator compare against sub control
I have a custom control "FieldGroup" which contains an asp:TextBox and some other functionality. The asp:TextBox is exposed through a public property "TextBox".
On the page that uses my FieldGroup I ...
1
vote
4answers
2k views
How to change the ValueToCompare in CompareValidator by javascript?
In my form, there are password field, so that I cannot use postback.
I need to validate everything in client side.
But the ValueToCompare may change by the user input.
How to change the ...
1
vote
3answers
3k views
How can I use CompareValidator for times without dates?
When I enter 9:00 into the Start control, and 16:00 into Finish; the code below fails validation.
Does anybody know a way I can use the ASP.NET validator for times without the dates?
Start ...
0
votes
0answers
39 views
DateTime Validation when web is one LocaleID and user is using another
So I've got an .aspx page in SP 2007, where the user can pick dates from a DateTimeControl. I've got both a required field validator as well as a CompareValidator, which checks the to see if there is ...
0
votes
0answers
22 views
ASP.NET CompareValidator.ControlToCompare ID is not unique
I've got a problem since I use asp.net dynamically created CompareValidator.
And I've got a lot of textboxes with the same ID - dynamically created as well.
I cannot bind my ...
0
votes
3answers
121 views
Compare Validator for two dates
I have two labels and two text boxes, a Compare validator and a button.
I need it to compare two dates (rental date , return date ) and when the rental date is less or equal to return date are the ...
0
votes
0answers
108 views
Ajax toolkit combo box doesn't cause validation
I have 2 Ajax toolkit combo boxes which I made into time pickers as begining time & end time. The end time is auto postback and when the end time's index changes an event is triggered calculating ...
0
votes
2answers
241 views
Comparing two times that are shown on form as dropdowns for hours and minutes
I have been working on a .NET/C# form that contains two time fields that are built out of dropdowns. Time A is made up of two dropdowns for Hours and Minutes and Time B is made up of two drop downs ...
0
votes
1answer
511 views
Validation on usercontrol in ajax tab control
I have a series of usercontrols nested in an ajaxToolkit:TabContainer that need to be validated. The user control has a txtFlightFrom and a txtFlightTo control and I need to make sure that is their ...
0
votes
2answers
293 views
asp.net CompareValidator not running as expected on submit
I'm trying to get a CompareValidator to work but having a few problems. If the submit button does not run a function it works fine, but the validator does not work if there is a function attached to ...
0
votes
2answers
630 views
How to Use compare validator
Please tell me how to apply compare validater for password and confirm password in ASP.NET MVC2.
Please give me some good link or any sample.
Thanks
0
votes
2answers
410 views
CompareValidator currency check does not work with French formatted numbers
I have a salary TextBox and an associated CompareValidator, which is setup as follows:
<asp:CompareValidator ... Operator="DataTypeCheck" Type="Currency" />
I fill the TextBox with a ...
0
votes
1answer
2k views
ASP.NET: Validate text box contains integer greater than equal to zero?
If I want to validate that a text box contains an integer greater than or equal to zero. Do I need to use TWO asp:CompareValidator controls: one with a DataTypeCheck operator and one with a ...
0
votes
3answers
3k views
Using the CompareValidator control to compare user input date with today's date
hey..i would like to compare the current date with the date entered by user..however, i'm encountering errors so far..
i tried something like this:
<asp:TextBox id="txtDate1" runat="server" ...
0
votes
2answers
508 views
Button_Click Event not raised due to CompareValidator
I have a page containing an <asp:Button/> to leave the page and a <asp:TextBox/> to get some date and another <asp:TextBox/> to confirm that data.
The confirm validator is ...