Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
2k views

Required validation only if the field is visible in asp.net mvc

I am using the [Required] attribute for the Clientside validation in asp.net mvc 3. The class looks as: public class User { [Required(ErrorMessage = "First Name is required")] public string ...
6
votes
6answers
9k views

Dynamically enable or disable RequiredFieldValidator based on value of DropDownList

I have an ASP.NET form with three text inputs, one each for "Work Phone", "Home Phone" and "Cell Phone". Each of these text inputs has a RequiredFieldValidator associated with it. I also have a ...
5
votes
7answers
20k views

Change Text Box Color using Required Field Validator. No Extender Controls Please

I need to change color of TextBox whenever its required field validator is fired on Clicking the Submit button
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" ...
4
votes
3answers
1k views

Using PHP Filter function to validate, but ignore empty non-required fields

I want to use the PHP Filter functions to quickly filter a form and show feedback to the user. Some of the fields in my form are required, some are not. I am going to use filter_input_array() to ...
3
votes
1answer
190 views

Required Field Validator with Safari 5.1

I'm using a Required Field Validator (code below) with a Radio Button List within a Wizard to ensure the user selects a value before proceeding to the next step of the wizard. This is working fine ...
3
votes
3answers
854 views

Define markup for [Required] fields in View in ASP.NET MVC 2.0

We have a model with properties decorated with [Required] which works great for validation. However, what we'd like to do is mark those required fields in the view with an asterisk (or some other ...
3
votes
2answers
1k views

RequiredFieldValidator not working under firefox

Hi guys I use 2 requiredfiledvalidator for 2 selects, one is working but the second one (the one I need) isnt <asp:dropdownlist id="ddlMod" runat="server" Width="235px" AutoPostBack="True" ...
3
votes
4answers
3k views

ASP.NET: avoid RequiredFieldValidator on navigate button postback

I have an ASPX page with two RequiredFieldValidator and a button to go to another page. This button must do a postback to know where to go. This button can be clicked it any time. The problem is that ...
2
votes
1answer
229 views

Modal Popup Closing when clicking OK, even if form validation fails

I'm using the AjaxControlToolkit, which I haven't used in a while so I know I'm a bit rusty. I created a simple form in an asp:Panel with one field and a required field validator. I would like to ...
2
votes
1answer
349 views

using asp.net required field validator with two check boxes

i have two check boxes with make/female and i would like to add a required field validator for them so if none is checked then a custom error appears, a can already do this but with one control not ...
2
votes
2answers
584 views

Invoke required field validator through javascript

I have a non standard submit button in my ASP.NET form along the lines of. <a class="button" href="#" onclick="this.blur();SubmitForm();"><span>Submit</span></a> Due to ...
2
votes
1answer
147 views

Asp net validation error message is never display

I'm using a RequiredFieldValidator to check a field as follow : <asp:TextBox runat="server" ID="field" Text=""></asp:TextBox> <asp:RequiredFieldValidator ID="fieldValidator" ...
2
votes
1answer
139 views

Validator Summary will not update dynamically

I have a validation Summary I am using for the RequiredFieldValidators to use to show the error messages while an image shows up next to the controls being validated. I have set the required field ...
2
votes
1answer
236 views

disable Required Field Validators

I have a form which consists of several requiredfieldvalidators and have 2 buttons an add and update button. i want to associate only 5 out of 13 requiredfieldvalidators with the update button and all ...
2
votes
1answer
527 views

Only validate city, state, and zip if “United States” is selected as a country

I need to create a user control with form fields for Country (dropdown), Address (text box), City (text box), State (dropdown), and Zip (text box). I only want to validate City, State, and Zip if ...
2
votes
2answers
1k views

Handling RequiredFieldValidator inside of a User Control

I have a User Control which consists of a TextBox with a few extras, but for purposes of this example just assuming it's a plain TextBox will be sufficient. I am calling this User Control from a Web ...
2
votes
1answer
248 views

In code behind how do I make a validator to not validate?

Like I have this validator on a TextBox: <asp:RequiredFieldValidator ID="rfvtxtAdd" ValidationGroup="Update" ErrorMessage="*" SetFocusOnError="true" ControlToValidate="txtAdd" runat="server" ...
2
votes
1answer
34 views

.net Validating a range of controls

I have the following scenario. I have a search page which is split into two divs. In the first, a user can create query parameters using a range of drop down menus. In the second div a user can ...
2
votes
2answers
550 views

Show “passed” image or text after validating an asp.net (req. field)validator

I have the following asp.net code: <asp:TextBox CssClass="mf" runat="server" ID="mail1" Width="270" /> <asp:RequiredFieldValidator ID="rfv1" runat="server" ...
2
votes
1answer
2k views

Date format in RangeValidator

I am using RangeValidator to validate date enter in textbox and its working fine with default date format but now i want the date format in "dd/MM/yyy" but its generating excption with this date ...
2
votes
1answer
2k views

Required Field validator disappears on dropdownlist post back

I populate two dropdownlist in asp.net. Both are assigned to a required field validator. The codebehind is as below if (!Page.IsPostBack) { DataTable dt = new DataTable(); ...
1
vote
1answer
59 views

how can i make Valdator's color red?

i have a problem that i have specified the color of RequiredFieldValidator to red but when i publish the website on net the color of RequiredFieldValidator is changed to black. it works fine in ...
1
vote
5answers
46 views

ASP NET MVC 3: Form doesn't POST due to a required hidden field

I want to submit a form, but the button isn't clickable. After some search I found out that this is due to the jquery validation that ASP.NET MVC has for required fields. For some weird reason ASP ...
1
vote
0answers
50 views

Custom control and required field validator

i am creating a custom control for the textbox.Let say when the textbox's action is edit , the textbox will render same as textbox .On the other hand , when the textbox is action is view, then ...
1
vote
1answer
43 views

asp.net requiredfieldvalidator to depend from label text

I have two controls on a page, label and dropdownlist. I have a requiredfieldvalidator on the dropdownlist, but what I want to achieve is that if the label has some text than there is no need for ...
1
vote
1answer
73 views

RequiredFieldValidator ErrorMessage does not delete itself even though TEXT does?

This is some old code that I am not too familiar with : RequiredFieldValidator vldRequired = new RequiredFieldValidator(); vldRequired.Display = ValidatorDisplay.Dynamic; ...
1
vote
2answers
109 views

How can I have a cancel button code run even if field validators are not satisfied?

I have a form to register new users for my site and their are required field validators on the page. I want to include a cancel button that redirects the form to the main page but unless the ...
1
vote
2answers
45 views

Is it possible to apply a particular CSS to a textbox in case it cannot pass a RequiredFieldValidator?

Is it possible in ASP.NET to enforce a Requiredfieldvalidator control to add a CssClass to a TextBox in case it fails the validation? <asp:TextBox ID="txtSomeInput" runat="server" /> ...
1
vote
1answer
78 views

Force AJAX validation controls to check at runtime

I have a web application that has a page which holds a form (Built in a details view) as well as a user control. The form on the page is a basic form with a few fields to be input and a checkbox. I ...
1
vote
1answer
29 views

Requiredfieldvalidtor in asp.net stops me from going back?

When a user clicks a link, he's sent to a register form. In this form I have certain fields that need to be filled in. So I use required field validator on them. On the page there is also a Back ...
1
vote
1answer
198 views

RequiredFieldValidator requires user to click twice

I have a simple web form with a textbox and a RequiredFieldValidator wired up to it. When the RequiredFieldValidator error is triggered the user has to click the submit twice to post the form. The ...
1
vote
1answer
56 views

Creating a custom response with ASP.NET validation controls

I need to validate various ASP.NET controls, but instead of displaying the standard text/asterisk/image next to each when validation fails, I need to display custom content (change the outline color ...
1
vote
4answers
178 views

Zend Framework: Require one out of three values

For my school project, I am working on a database management application. It is my first real Zend Framework application. Now, right now, I have set 3 values as required, postalcode, email and ...
1
vote
3answers
165 views

Trigger the status of the client side validation

I have a .net form with several text Fields and some of them are marked with the RequiredFieldValidator. <asp:TextBox MaxLength="150" Width="300" runat="server" ...
1
vote
1answer
534 views

Multiple field validator in WPF search form

I've got a fairly simple view which functions as a search form. There are two comboboxes and a textbox, with a "search" button. The search cannot be performed if there is no selection in either ...
1
vote
1answer
482 views

Required Field Validator gets run on post back trigger

I have a dropdown list on my aspx page on which I have a RequiredFieldValidator applied over it. DropDown code is: <asp:DropDownList ID="ddlglCategoryId" runat="server" CssClass="textEntry2" ...
1
vote
1answer
271 views

WPF Validators like the one in ASP.NET

How do we implement Validators in WPF application similar to the ASP.NET application like required field validator? Thanks in advance.
1
vote
1answer
789 views

C# code behind Required validation

I am writing a c# code for a Required field validator for a Multiline text box. I have a issue in the run time: when i won't enter any text inside the text box For first Click on submit ...
1
vote
1answer
456 views

RequiredFieldValidator not working programmatically

As the title says. What could be amiss? I have a regular TextBox on my page - <asp:TextBox ID="tb" runat="server" /> The following works: <asp:RequiredFieldValidator ID="r" runat="server" ...
1
vote
3answers
101 views

How to create a regular expression for cricket overs

Please tell me what regular expression should i use to validate cricket overs in textbox. like it can be 5.1, 5.2,5.3,5.4,5.5 but it should not contain fraction value greater than .5 ,also the values ...
1
vote
3answers
4k views

Required field validator not working

I have used a required field validator followed by a regular expression validator but the required field validator is not working..... <asp:TextBox ID="txtSummary" runat="server" ...
1
vote
2answers
333 views

Multiple RequiredFieldValidators on page but they need to apply to different button clicks

I'm working on a asp.net page and I have the following scenario: I have 2 fields that have requiredfieldvalidators which need to "fire" their validation when button1 is clicked but NOT when button2 ...
1
vote
2answers
210 views

Disable validation controls based on a condition

I have an asp.net application that uses validation controls on textboxes. However, if the user enters a value in txtFieldA, then I want to disable the validation controls on txtFieldB and txtFieldC.
1
vote
3answers
198 views

what if i do not set error message in required field validator?

If i do not set error message in required field validator, will it display msg pop up box or not? my code- <asp:RequiredFieldValidator runat="server" SetFocusOnError="true" ...
1
vote
3answers
224 views

RequiredFieldValidator works on dev and stage environments, not production

We deployed our legacy ASP.NET application to production after successful test deployments to our staging environment. The application makes use of RequiredFieldValidators on one particular ...
1
vote
1answer
2k views

Enable/disable RequiredValidator on client-side / CustomValidator not firing

I've got a drop-down where the user selects a Country. It is a required "field". Next to it, there is a textfield named State. If the user selects US, then the field State is required. If the user ...
1
vote
1answer
308 views

RequiredFieldValidator Issue

My requiredfield control is validating the "SEL"(default invalid value) value but when I do change the value to a valid one, the ErrorMessage/Text does not disappear until I submit the form again. ...
1
vote
2answers
491 views

What are the conditions when sometimes Required field validators fails in C#?

There is a strange problem in my application. There is one mandatory field which we are making mandatory through Required field validator but still in few scenarios it fails. Can someone tell me what ...
1
vote
2answers
2k views

Autopostback=True for a Textbox and RequiredFieldValidator next to it. But when submitting form after Posting back by TextChanged event to the Textbox, RequiredFieldValidator doesn't work?

aspx form I have a textbox (Textbox1) with Autopostback=True. I also set a RequiredFieldValidator (RequiredFieldValidator1) next to it. But when Posting back by TextChanged event of Textbox1, ...

1 2 3