Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
357 views

ASP.NET RangeValidator can't do even the most basic math?

I'm having an issue with my ASP.NET RangeValidator controls. I want to allow users to enter a discount amount, and this amount must be negative (< $0.00). I want to verify that the amount entered ...
2
votes
3answers
1k views

ASP.NET RangeValidator weirdness with MaximumValue

I have a pretty simple ASP.NET page with some input fields and validators. One field accepting a double looks like this: <asp:TextBox ID="tbHeight" runat="server" /> <asp:RangeValidator ...
1
vote
0answers
64 views

asp:RangeValidator MinimumValue > 0

I am back at last and actually have a perm job thanks to all the help you guys gave me a while back !! :) Thanks. Ok, so now I have a simple task, to add some ranges to an existing ASP.Net page. I ...
1
vote
2answers
423 views

ASP.NET RangeValidator Behaving Strangely

It's type attribute is set to string and it's min value = 0 and the max value = 100. I want to insure that the data entered won't exceed the column length defined in the database. Now when I test ...
1
vote
2answers
432 views

set a dateformat dd/mm/yy for range validator

I have a range validator to validate a textbox for birthday. i must ensure that a student must be above 21 to register with us. i set "31/12/1993" format (dd/mm/yy). but it cannot run the website as ...
0
votes
1answer
44 views

RangeDateValidator in asp.net is not working as expected

I have set the RangeDateValidator in the code behind as shown below, and even though I enter a correct value such as 11/11/1990, it still causes a validation error. public void Page_Load(object ...
0
votes
2answers
99 views

Button.Click event will not fire when text entered in RangeValidator.ControlToValidate

Based on an example from MSDN, I'm trying to validate a date range in code-behind, using a RangeValidator There are three TextBoxes, one for arrival date, departure date, and desired tour date. After ...
0
votes
3answers
158 views

RangeValidator Can't Count?

I am trying to validate length of a string in a TextBox. Controls on page defined as follows: <asp:TextBox runat="server" ID="TB" /> <asp:RangeValidator runat="server" ID="RV" ...
0
votes
1answer
201 views

Validation control doesn't prevent PostBack request to server

I have big web page, among other there is TextBox and RequiredRangeValidator. <asp:textbox id="tbNewSvrLic" runat="server" Text="0" BackColor="#FFFFA0" /> <asp:RangeValidator ...
0
votes
1answer
443 views

using Asp.Net RangeValidator for Int64

Is there a way to use RangeValidator for large numbers (Int64 range)?
0
votes
1answer
485 views

Set the Culture for an asp.net RangeValidator

An asp:RangeValidator takes it's culture info from the page/ thread and all advice online around getting the right culture seems to be to set the CultureInfo on the thread. Rick Strahl's west wind ...
0
votes
3answers
630 views

Can I get the ASP.NET RangeValidator an onblur/onfocus events to play nice with each other?

I have a textbox for entering a currency amount, with a RangeValidator control making sure the value entered is between 1 and 99999999.99. The field also has an “onblur” event that fires off some ...
0
votes
2answers
403 views

ASP.net range validator moving to next page

I have put a range validator in a asp.net text box control in my webpage; whenever the range is not meeting ; it will dispay the error message, But it is moving to the next page. how i can prevent ...
0
votes
2answers
675 views

c# Use two validators on the same field

I have run into a problem trying to modify a form I myself have not built. The form has a asp:input field for a date value, wich is checked by a requiredFieldVal and a rangeVal. The rangeVal has type ...
0
votes
3answers
332 views

Using RangeValidator with byte

This is the property declaration in question: [RangeValidator(1,RangeBoundaryType.Inclusive,255,RangeBoundaryType.Inclusive,MessageTemplate = "StartFlexibility is out of range")] public byte ...
0
votes
3answers
2k views

asp:RangeValidator on DateTime with format dd/MMM/yyyy

Is it possible to use the ASP.Net Range validator when the format string is dd/MMM/yyyy?
0
votes
4answers
2k views

Remove “$” before ASP.Net RangeValidator script executes

How can I force the input's onchange script to run before the RangeValidator's script? I want to prevent a failed validation when the user enters a dollar sign or comma. function cleanUp(str) { ...
-1
votes
1answer
323 views

Using aspnet range validator on html input control

I am building a small web application in c#. I am using the range validator and I want to bind it to an html control that has the runat="server" attribute to it. From some reason it won't bind and ...