The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
14 views

jQuery/ASP.NET MVC: Does a validator need to be defined?

In my ASP.NET MVC form, I've got a hidden field that holds the primary key of the object I'm editing. Model: public class PropertyModel { public int PropertyId { get; set; } } View: ...
0
votes
1answer
64 views

Razor generates different HTML after published to a shared host

Model class: public class MyClass { ...... [MaxLength(9), Required, DisplayName("Social security number")] [RegularExpression(@"\d{3}-\d\d-\d{4}", ErrorMessage = "Invalid social ...
1
vote
0answers
85 views

Client validation not working on the shared host but works when debugging

I had the following property in model class: [MaxLength(9), Required, DisplayName("Social security number")] [RegularExpression(@"\d{3}-\d\d-\d{4}", ErrorMessage = "Invalid social security number")] ...
0
votes
3answers
132 views

A List of Field Names as a String Array - LINQ Expressions

Hello MVC and LINQ Experts, I have a Model that looks like this: public class SomeClass : IValidatableObject { public string SomeString { get; set; } public string SomeString2 { get; set; ...
3
votes
1answer
856 views

MVC data annotations range validation not working properly

I have a RangeValidator on a property in my model to only allow Integers that are between 0 and 100. I have a partial view that displays a form to update the property via a jQuery UI dialog. I have ...
4
votes
2answers
354 views

ASP.NET MVC Model Validation Error Localization Context

First of all, I have to say that I understand how Data Annotation -based Model Validation works in ASP.NET MVC4 and I have it successfully implemented with DataAnnotationsModelValidatorProvider. So I ...
0
votes
1answer
37 views

Is there a way I can simply use a data annotation attribute to add a JavaScript attribute to a form field?

I would like to add a data-other-for attribute to a text input, to link it to a select, so that it can be used to capture a value not present in the select when the user selects 'Other' in the select. ...
0
votes
0answers
53 views

Rendering unobtrusive validation attributes without LambdaExpression

How can I render unobtrusive tags without using LambdaExpression? I'm using a client side view model that's derived C# viewmodel using JSon to KO mapping. I would like to maintain things as is in ...
0
votes
0answers
45 views

ModelState errors appear in ValidationSummary but not on the page

In an MVC 4 application I've got some custom validation firing that results in the error being written to the ValidationSummary but not on the page (where I have ValidationMessageFor calls). The IDs ...
0
votes
0answers
165 views

How to fire MVC Server Side validations when form is submitted using AJAX?

I have a series of partial views which I am loading on the same page using ajax calls one by one. All the previous partial views are disabled and the new partial view is loaded at the end. I would ...
0
votes
1answer
225 views

MVC3 How to define custom error messages using annotations?

I have a DateTime field(that can accept multiple date time formats, so it is pain to create Regex patter) When in the field I'm entering something like "Aaaaaa", I'm getting error message: The value ...
0
votes
0answers
48 views

Client Validation Conflict - ASP.NET

My website as Masterpage, and in my masterpage I have a Custom Validation to make login and works fine. (With client validation and server validation). But when I make a Custom Validator or Required ...
1
vote
0answers
125 views

Extending MVC FoolProof validation

I would like to use MVC FoolProof Validation in my MVC 3 application. I need a Numeric validation and also accepts N/A or n/a. So i decided to create my own custom validation attribute like ...
1
vote
1answer
135 views

ValidationMessageFor with model and html attribute only - MVC 3

Working on a MVC 3 application. I need to add a class to the validation message html. I mean for span tag. My Model [Required(ErrorMessage = "Role Name is required")] ...
0
votes
2answers
89 views

Hitting a non-character key in an MVC3 required field fires validation?

I noticed that on a log in view, when a user enters in their email address, and quickly tabs to the password field, the MVC3 required attribute validation fires. The code I have is quite large, but I ...
1
vote
1answer
184 views

Regular expression and other validation with MVC 3

I need to implement following validations in MVC 1. Date field A field can accept only mm/dd/yyyy format and should be in a year range between 1753-9999 and other basic checks like Leaf year and ...
-2
votes
1answer
87 views

Better way to check duplicates in the list

I am checking if there are any duplicates while posting list of objects from view to controller by using validation attribute. It works but I would like to know if there is any better approach to ...
1
vote
1answer
169 views

ASP.NET MVC 2 List<T> model validation

I am working on MVC 2 application and I have a problem. My code looks like this: public ActionResult Users() { try { var model = new List<User> ...
1
vote
1answer
338 views

ASP.NET MVC 2 validation on dynamic page

I have registration wizard on my asp.net mvc 2 application with multiple pages. On the first page I should have basic data form of persons involved in the process. I should have 3 text boxes labeled ...
1
vote
1answer
119 views

How to update UI with validation error message with disabled JavaScript?

I have a form: using (Html.BeginForm()) { @Html.TextBoxFor(x => x.Name, new { @class = "span8" }) } Model: [Required] [RegularExpressionAttribute("regex")] public string Name { get; set; } ...
0
votes
0answers
50 views

MVC RemoteAttribute with Image Validation

I am trying to get the ValidationMessage to display an icon on success and fail whenever a user provides an input in the editor and the RemoteAttribute validation is done. I have the following code ...
0
votes
0answers
59 views

RemoteAttribute using validation for more than 1 field

I have been experimenting with the RemoteAttribute, however came across an issue. I have implemented an action method which handles the validation of an email string, however would like to have this ...
2
votes
1answer
303 views

MVC Client Side Validation doing database check

Is there a way how to perform a "database" check through the Client Side Validation in MVC? I have the following class public class EmailCheck : ValidationAttribute,IClientValidatable { ...
0
votes
2answers
83 views

ValidationMessage is showing on initial GET method

I am working on an MVC 4 project that is constantly showing the ValidationMessage even on a simple GET method that does no validation or model binding of complex types: ...
0
votes
0answers
466 views

C# MVC Model Validation - String Length Issue

I am having an issue with my model validation on an MVC web page. When I display a string in a textbox it's length is longer than expected which breaks the validation. I have declared a string ...
1
vote
1answer
2k views

jQuery time picker and MVC validation - the field must be a date

I have a property named StartDate in my model. I have used timepicker add-on to jquery.ui plugin from here. It is working fine, but problem is that I'm getting validation error message. How can I ...
1
vote
3answers
510 views

MVC Validation Fundamentals (with Entity Framework)

MVC Validation Fundamentals (with Entity Framework) Scenario: I have a model class as below (autogenerated via Entity Framework EF.x DbContext Generator). (There is no view model at the moment). ...
0
votes
1answer
726 views

MVC4 validation for select option value

I am new in the MVC technology and I have an MVC 4 application and am trying to display a validation for select input(Month and year). I did validation for input type="text" its working fine for me. I ...
0
votes
1answer
373 views

Validate only ajax loaded partial view

I have a form with some controls. There is a button on the form which loads a partial view. Inside the partial view, there are two required field textboxes along with a button. And when its clicked, I ...
0
votes
1answer
95 views

How to check if a <div> is valid with unobtrusive javascript

I have a form which loads a div on client side. I have hard coded textbox controls with all validation attributes, similar to what it renders when loaded from server. Inside the div there is submit ...
1
vote
1answer
163 views

MVC3 Managing Remote Validation Exception

i have the following problem: i'm using remote validation for validate a field and now i'm trying to manage exception public class ValidationController : Controller { List<string> values = ...
0
votes
2answers
333 views

MVC 3 - Set non-required field to required at the client side

I'm building an MVC 3 application. Can I set a non-required field to required in the client-side(using JavaScript / jQuery)? I need it to be dynamically when things change in the page. UPDATE: I ...
0
votes
1answer
1k views

Updating div content after submiting ajax form in asp.net MVC3

<div id="myDiv"> <ul class="purpose"> @{ var purpose = CommonMethod.getPurpose(""); for(int i=0;i<10 && i<purpose.Count();i++) { ...
0
votes
3answers
118 views

How to validate properties in 2 different situations in mvc 2 app?

please help me with asp.net MVC 2 application. I have class: public class Account { [Required(....)] [RegularExpression("....")] public string AccountCode{ get; set; } public ...
2
votes
1answer
854 views

MVC 3 Unobtrusive validation of a list

Question I have created a server-side property level validation attribute. But instead of applying it to an individual field I've applied it to a List. This allows me to validate the model as a ...
1
vote
0answers
105 views

MVC validation created on fly is not working in ASPX view and working in Razor

I am having input element and on a button click i am creating a form on fly and placing the input inside the form and define form validation using the following code. ...
1
vote
1answer
599 views

ASP.NET MVC3 Second custom validator method not triggered

I am trying to implement a custom validation on my ASP.NET MVC3 form. The first custom validation is only validating if a file has been selected in the file upload input. It worked fine when I had ...
2
votes
1answer
284 views

How can I return additional (i.e. more than just field=>error message) validation information from custom validation code to the Controller or View?

I am looking for a way to return the following information from my custom validation code: public enum ValidationErrorTypeFlags { Error_Input = 1 << 0, // a "field specific" ...
2
votes
4answers
2k views

Validating File Upload - Jquery and “Accept” attribute

I am using a form to upload a file. I want only PDF files to be uploaded. This is my code: A input box to allow the user to choose a file: @Html.FileBox(m => m.FileName, new { id = "FileName", ...
3
votes
1answer
1k views

Display ModelState error returned by JsonResult in MVC 3 project?

I have a create page that uses a JsonResult action instead of ActionResult. In the ActionResult action, the errors are displayed on the view beside the offending field. Right now the JsonResult only ...
0
votes
1answer
211 views

How to apply validation to a collection item in Asp.net MVC 2

I have a strongly typed view, which hold controls(input boxes) to represent a collection item. So for an example , take case of a view for adding an Employee detail and within that there are variable ...
1
vote
0answers
103 views

Auto generated validators being created for Nullable fields

I have an MVC 3 application which has to be localizable. For my integer MVC is automatically adding Number Validation however I have marked the field as nullable. This is in my ViewModel: public ...
0
votes
2answers
561 views

only show the errormessage when email is invalid

I work in ASP MVC3. I have a model for the input of the contact information of a customer. The information is required. When the viewstat is not valid the textboxes must have a red border (this ...
0
votes
1answer
712 views

MVC validationSummary is not working [closed]

I am having a weird issue in MVC. I am using ASP.Net MVC, I have created a Partial View, which posts user's Review details to DB. I have used "jquery.validate.min.js" and ...
1
vote
1answer
2k views

ValidationSummary for server side errors is not working

Client side Validation and ValidationSummary is working fine for my project (MVC4 + Razor + Unobtrusive JS) but the Server side errors are not shown on my view and if there was any client side error, ...
0
votes
2answers
202 views

Asp.Net MVC: Fill a model property from a ActionFilterAttribute OnActionExecuting

I'm implementing a captcha control for lost password in a website, like described here But I feel very unconfortable with the ` filterContext.ActionParameters["captchaValid"] = ...
1
vote
2answers
493 views

ModelState.IsValid = true for not valid model

I have view for adding very simple objects: @Html.ValidationSummary(true) @using (Html.BeginForm()) { <div class="editor-label"> @Html.LabelFor(tag => tag.Name) </div> ...
0
votes
2answers
2k views

HTTP Post request from different controller actions and ModelState

I have a weird need in an ASP.NET MVC 3 application which blocks my current progress. Here is the case: I have a little search engine for the products and I render this search engine on multiple ...
0
votes
1answer
469 views

Validating TextBox input for a list that is a property of an MVC3 ViewModel

I realize I'm a little late to the party, but... I'm working in my first MVC project, and have been able to get a handle on most of what needs to be done. Most of the project simply reads data and ...
1
vote
2answers
593 views

MVC 3 validation not working for complex model

I have a UserFormModel which contains a UserModel which has a set of properties with the [Required] attribute set. I have read that MVC 3 out of the box will validate models within models by default. ...

1 2