The requiredfieldvalidator tag has no wiki summary.
1
vote
1answer
20 views
Make field email validate and required
I need to have a textbox be validated as an email address, and make it a required field. I also need to restrict the email addresses to a specific domain name only (e.g. @example.com).
...
0
votes
1answer
8 views
use RequiredFieldValidator and Watermark property
i use this code in aspx page:
<asp:TextBox ID="Search" runat="server" ToolTip="Search..." Text="Search..." onblur="if (this.value=='') this.value='Search...';" onfocus="if ...
0
votes
1answer
43 views
Required field validator not working when OnClientClick is added in the button
hi i have a RequiredFieldValidator Like this
<asp:TextBox ID="txtEmployeeID" runat="server" MaxLength="255" CssClass="txt"
OnTextChanged="txtEmployeeID_TextChanged" AutoPostBack="True"
...
0
votes
1answer
23 views
ValidationSummary always showing asterisks
I have the following setup for a changepassword control:
<asp:ChangePassword ID="ChangePassword1" runat="server">
<ChangePasswordTemplate>
<h3>
...
0
votes
3answers
20 views
RequiredFieldValidator not preventing database from getting updated with an empty row - Visual Studio 2012
I'm just playing around with Visual Studio 2012 and trying to make an very simple newssite with an local SQL Server database. The problem is that the RequiredFieldValidator is not working on the ...
1
vote
2answers
57 views
how to set RequiredFieldValidator to validate against specific user control which has multiple instance?
so let say i have a user control which called 7 times in an aspx file, i put field validator control in that user control, the problem is everytime i click some buttons which cause postback, field ...
0
votes
1answer
36 views
FileUpload - RequiredFieldValidator and RegularExpressionValidator do not fire
I have a FileUpload control for which I have attached a RequiredFieldValidator and a RegularExpressionValidator. My code in working fine on my computer, but in production neither the ...
1
vote
1answer
47 views
Why does my asp.net webform page validation fail in IE9, but not Chrome(current version)
This may seem like a simple question, but I have googled the crap out of it and can't find any clues.
Here is a basic page (trimmed down substantially for demo purposes)
<%@ Master Language="C#" ...
0
votes
0answers
32 views
Disable ASPxGridView Column Validation in PageLoad
I have a ascx page that I'm using ASPxGridView. I'm also using this gridview to add/update records to my DB. For each column on gridview, while I'm adding/updating a record I'm using Required Field ...
1
vote
2answers
44 views
Combine jQuery preventDefault and required form inputs
Ok, so putting preventDefault on my submit button works to stop form submission. The consequence of this is that it won't tell the user of required fields and just performs the click event on the ...
0
votes
0answers
31 views
ASP.NET validation missing something?
I usually don't resort to posting questions that seem simple, but this one has me stumped.
I have a text box that is a required field, and when I click submit I want to validate the text box.
Here ...
0
votes
1answer
58 views
RequiredFieldValidator to prompt ModalPopupExtender
I have a bunch of RequiredFieldValidators on a page and I would like the ErrorMessage="" to display in a ModalPopupExtender rather than on the page. So when they click submit and a textbox isn't ...
0
votes
0answers
54 views
Can't have more then one RequiredFieldValidator in ASP.NET web form
Okay so whenever i have more then one RequiredFieldValidator in my ASP.NET web forms i get the following error:
WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. ...
0
votes
1answer
75 views
MVC custom DataAnnotation (RequiredAttribute) not applied on select elements
I created a new RequiredAttribute extention called "RequredWhen".
It works well on textboxes but not on select elements.
For some reason those only validate on postback instead on client side. The ...
0
votes
3answers
214 views
How to validate textbox only for spaces?
I have a tex box in aspx page and i need to validate the text box. How can i do this at server side.
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
if(Textbox1.Text=="")
{
...
0
votes
2answers
108 views
RequiredFieldValidator always invalid
I have three RequiredFieldValidator controls on the form (for a dropdown and textboxes) and they always invalidate the page even if user enters data!
<div class="control-group">
...
0
votes
0answers
35 views
required field validator on url rewrited page with global asax
I'm working on a website. Urls are rewriting with global.asax with BeginRequest function.
void Application_BeginRequest(Object sender, EventArgs e)
{
string path = Request.RawUrl;
...
0
votes
1answer
90 views
adding RequiredFieldValidator at runtime
I am adding controls to the page as well as the RequiredFieldValidator controls, but something is going wrong.
int i = 4; // for testing; for now
// add surname textbox
...
0
votes
0answers
109 views
knockout required validation shows at page load
Following is my validation configuration:
//************ initialize validation engine *********************
ko.validation.configure({
registerExtenders: true,
messagesOnModified: true,
...
0
votes
1answer
61 views
ASP Validators not working?
I feel embarrassed to be posting this as I'm pretty sure I'm missing something really simple, and this certainly isn't the first time I've used asp validators. I have the following validator controls:
...
2
votes
2answers
198 views
ASP.Net, VB: Clearing fields on the webpage
I am developing a website using ASP.Net and VB.
On one of the pages, there are certain fields (TextBoxes and a DropDownList).
User is supposed to fill out those fields and click 'Submit' button. ...
0
votes
6answers
2k views
Validate text box using jquery
I have several asp text box inside my aspx page. And there is no enough space to show Requred field validator messages. Is there any solution to this? using jquery or something else?
1
vote
1answer
113 views
Managing Asp.Net Validators using Jquery
How can we access the Asp.NET Validators like Required Field,Regular Expression,etc.. using JQuery?How can we control their display and customize them using Jquery?
0
votes
0answers
70 views
RequiredFieldValidator fails when Master page button clicked
I have been using the requiredfieldvalidator in all of my content pages and they worked fine for the content page button clicks and prevents the post back.
But I am using the same Validation group on ...
0
votes
1answer
44 views
Validating drop down list
I Have a dropdownlist in an aspx page, I am populating the dropdownlist using a datatable. How can i apply a requiredfield validator to this dropdownlist.? Plz help me
0
votes
2answers
447 views
Required Field Validation Server Side
I am planning to fire the required filed validation in my button click event.
<asp:RequiredFieldValidator ID="RequiredFieldValidator10" runat="server"
ControlToValidate="RadDatePicker3" ...
0
votes
0answers
458 views
Required Field Validator not working on controls inside dynamically generated user control
I have a user control containing few server controls like text boxes and drop down lists.
i have also added few required field validation controls. Normally these validation work fine, if I add the ...
0
votes
0answers
137 views
Custom Validator Event Not Firing in DetailsView Control
I am trying to validate user input in a DetailsView control. After the user enters a text value in a field I would like to check that the value entered is not a duplicate within the table.
A new ...
2
votes
1answer
227 views
Add ValidationControls dynamically to updatepanel? [ASP.NET]
I have a problem with my dynamic updatepanel that I've created.
The problem is that i want to add a validator,i.e RequriedFieldValidator, to every element that i'm creating on the serverside.
This ...
0
votes
0answers
176 views
required field validator not working row updating gridview
hi here below is my code on gridview rowupdating event. Why required field validator is not working?
if (string.IsNullOrEmpty(txtKMStart.Text) && string.IsNullOrEmpty(txtKMEnd.Text))
{
...
0
votes
2answers
950 views
RequiredFieldValidator with ValidationSummary not working with enter key inside empty textbox
Consider the following ASPX:
<asp:ValidationSummary ID="vSummary" runat="server" CssClass="error-message" HeaderText="<p>Please correct the following errors with your profile.</p>" ...
0
votes
3answers
372 views
ASP C# RequiredFieldValidator
[textbox1]
[textbox2]
[button1] [linkbutton1]
i have 2 textboxes, 2 RequiredFieldValidator, button1 and linkbutton.
the button1 and 2textboxes are working properly with RequiredFieldValidator, but ...
1
vote
2answers
266 views
The RequiredFieldValidator for a drop down control inside of user control does not fire
Following is the test scenario for my code.
1) Once the user selects one of the radio buttons on Webpage.aspx, a modal popup extender shows up.
2) A user control (SSL_Ticket.ascx) is defined inside ...
0
votes
1answer
553 views
How Can disable and enable RequiredFieldValidator for controls with jquery
in a page I have two radio-button which based which-one selected I will show some controls in this page by using classes called 'person' and 'organization'. Moreover, I want to check user enter ...
0
votes
2answers
920 views
Enabling RequiredFieldValidator From Code Behind
I'm displaying an error message for the requiredfieldvalidator from code behind but the display is set to none or visible is hidden. I tried to do .visible = true but it's still hidden. How can I make ...
0
votes
2answers
193 views
ASP Validator: Validate lowercase and uppercase letter only
<asp:Label ID="lblDriving" runat="server" CssClass="lblDriving">Driving (y/n)</asp:Label>
<asp:TextBox ID="tbDriving" runat="server" CssClass="tbDriving"></asp:TextBox>
...
0
votes
0answers
190 views
MVC Dynamic Required Validation by Model Data
I have a class Address
public class Address
{
public int ID {get;set;}
public int? CountryID {get;set;}
public bool IsCountryRequired {get;set;}
}
Controller
public class ...
0
votes
0answers
620 views
Javascript activating before required field validation
I have 2 forms on 2 different html pages that both have required fields. They also both have Javascript validation functions that are called just before submit. The problem is if you click submit with ...
0
votes
2answers
222 views
ASP.NET RequiredFieldValidator : How can i bind value to “ InitialValue ” property?
I have the following code
<div>
<asp:DropDownList ID="testDropDownList" runat="server" ValidationGroup="testValidationGroup">
<asp:ListItem Value="Choose">[ Select Item ...
2
votes
2answers
348 views
Validating textbox in Server Control using RequiredFieldValidator
I have custom server control, which contains three textboxes. I need to validate its content using ASP.NET field validators.
I set 'ControlToValidate' property of RequiredFieldValidator to the ID ...
0
votes
0answers
119 views
multiple RequiredFieldValidators generates error
I encountered a very strange problem.
I have dynamic textboxes and RequiredFieldValidators on my .aspx page and i have added the jquery script source file on the page in the html head tag.
<script ...
0
votes
3answers
377 views
Can I have RequiredFieldValidator to check for more than one ControlToValidate?
I am having 3 TextBoxes in a row and then a Next button.
On clicking Next button, the control would go to the next page only if ALL of the 3 TextBoxes contain some user-entered text.
Is there any ...
4
votes
1answer
153 views
Multiple RequiredFieldValidator crashes page
I have a very strange problem. I've recently added MVC4 to an old Web Forms project. I did this by creating a new project, and adding the old files to the new project (rather than opposite approach of ...
1
vote
2answers
506 views
Not able to validate input text field rendered using ajax in jsf 2.0
<h:form>
<h:selectManyMenu id="carsList"
value="#{bean.carList}"
style="width:400px; height:100px" label="List">
...
0
votes
0answers
71 views
niceditors with asp.net multiline texxtbox requiredfieldvalidator
I am using niceditors WYSIWYG edito with ASP.Net multiline textbox with RequiredFieldValidator. data is present in the textbox but still its giving require field validator error, means client side ...
1
vote
0answers
82 views
RequiredFieldValidator not allowing Chinese characters
I have a standard RequiredFieldValidator on an ASP.NET 4.0 web form. It behaves fine for English names, but for some reason it won't validate if I use Chinese characters. I already tried changing the ...
0
votes
2answers
427 views
visibility of ASP.NET label on Required Field Validator
I have an asp.net label which is invisible.
When i insert something in DB i set it to visible=true with a message "Record saved" and it remains visible until another server side event is not fired.
...
-2
votes
2answers
138 views
asp:RegularExpressionValidator [closed]
So the user clicks on a hyperlink 'add data' which brings them to a new page where they will have to enter text into 3 textboxes and then click the button.
When the button is clicked (an error msg ...
0
votes
0answers
65 views
MVC Validate not checking validation of html.modeleditorfor attributes unless parent page is valid
I have a page that has a validation summary. On this parent page, there are several required fields (required is set via the required attribute in the model). If one of these items is missing, it ...
1
vote
2answers
802 views
CompareValidator for “dd/mm/yyyy” format
Hi i am enhancing our existing web application that will be used on EMEA where i need to change date time format "mm/dd/yyyy" to "dd/mm/yyyy" in runtime based on user global region.
My problem is ...






