Tagged Questions
0
votes
0answers
84 views
ValidationSummary error message order
We're having some difficulties with our registration page. All the functionality is present and correct, but our ValidationSummary isn't displaying the error messages in the correct order.
According ...
1
vote
1answer
168 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>
...
2
votes
3answers
700 views
Validate ASP.NET membership Username and Password when IsApproved is false
How can I check if the password entered by the user matches the password stored in the database when the IsApproved value is FALSE?
What I hope to do is as follows...
User registers - details saved ...
1
vote
1answer
144 views
Writing a custom attribute with an infinite number of matching parameters
I've written an If-IsRequired custom attribute to validate that a property contains a value depending on the values of some other properties in the model. Since I want to make this attribute apply to ...
0
votes
1answer
154 views
ASP.NET MVC2 validation in foreach loop
I am (finally) diving into JQuery and was wondering how to correctly handle validation of text inputs before posting. I have an ASPX page that will loop over a part of my model calling an User ...
0
votes
1answer
140 views
How to add a new validation rule to mvcClientValidationMetadata?
I have a form with two fields that need to be equal (password and password confirmation). I've created a class attribute to check that and on server side it works great. On the client side it does ...
0
votes
1answer
85 views
How do I do complex model validations in an ASP.NET MVC 2 application?
I've been struggling with refactoring how I'm doing Model validations for a while now. My applications are all ASP.NET MVC 2 (.Net 3.5 framework). I've read the related questions for this subject and ...
0
votes
1answer
106 views
What is the easiest way to implement validation in asp.net Form build from view model?
I have a model class, which I am using to create the form
Public Class Users
Public Property Id As Integer
Public Property UserName As String
Public Property UserNin As Int16
Public ...
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 ...
0
votes
1answer
868 views
Disabling Client Side Validation For Disabled Input Controls In ASP.NET MVC using MicrosoftMVCJqueryValidation.js
I am using MicrosoftMVCJqueryValidation.js and want to
Disable Client Side Validation For Disabled Input Controls.
Or is there any way to enable/disable client side validation using javascript?
4
votes
2answers
984 views
ASP.NET MVC - Complex model validation
I have a ViewModel class like this:
class CaseModel {
public Boolean ClientPresent { get; set; }
public ClientModel Client { get; set; }
}
class ClientModel {
[Required]
...
1
vote
1answer
204 views
ASP.NET MVC 2/3 validation attributes - if one triggers as false, are the others short-circuited?
A follow-up to my question here: ASP.NET MVC 2 - Handling files in an edit action; Or, is it possible to create an 'Optional' data annotation which would skip over other attributes?
If a ...
0
votes
1answer
356 views
How to validate multiple data annotations and return one error message in view
I am using data annotations with MVC2 to validate a date of birth. The date of birth has 3 different fields. (Month, Day and Year) (they have to be three individual fields)
Right now I have ...
1
vote
2answers
81 views
How can I change MVC2's validation messages?
I'm building an MVC2 project with C# and ASP.NET. In one of my forms I have a field that accepts a 'time' value. The field is using a JQuery UI Time picker but it still allows the user ot enter text ...
2
votes
2answers
440 views
ASP.NET MVC 2: Model Validation - username already taken?
I am following Scott Gu's blog: here
In his Blog he talks about client and server side validation.
How does one validate if username has already been taken and display this as a validation error ...
0
votes
0answers
231 views
MVC 2: render HTML TextBoxFor based on a model containing a collection attribute
I am new to MVC and am still struggling a bit with what I think is pretty basic mvc stuff. My intended purpose is simply to render textboxes that represent a collection of data objects such that I ...
1
vote
1answer
141 views
System.NullReferenceException with select clause
Hello beloved Community :D
right now i'm working on my first big project and am a little bit stuck.
I'm trying to validate some input.
Therefore i'm using this function:
public static ...
5
votes
2answers
893 views
Using Knockoutjs And Server Side Validation in .NET MVC2
I'm using MVC2.
Whats the recommended way of server side validation of forms when using knockout?
Currently, most of my forms are in partial views, which have a C# ViewModel with Validation ...
0
votes
1answer
372 views
MVC2 validation - pure jQuery based validation or use Microsoft scripts?
We've an ASP.Net MVC2 web app (SQL 2008 in backend). We use Data Annotations at model level for all sprt of validations (hope its one of the best practices). So, our validations are performed on ...
1
vote
1answer
165 views
Linq MVC 2 TryUpdateModel nullable bool
I have been having an issue with updating a nullable bool value using TryUpdateModel. I have a template created to handle the values as so:
<%@ Control Language="C#" ...
1
vote
1answer
152 views
Facebook auto posts on page tab
Im running a mvc2 application in a page tab on facebook.
The landing page contains a form, problem is, the validation for the form is executed on page load, this does not happen when debugging ...
1
vote
2answers
84 views
How can I validate form and then execute additional code if successful
I cannot figure out how to merge the following separate pieces of code:
$(document).ready(function () {
$("#signupForm").validate();
});
and
$(document).ready(function () {
...
1
vote
1answer
157 views
How can I call multiple validation functions in my Ajax call?
I would like to validate my form prior to calling the function that inserts records into the database.
$(document).ready(function () {
$("#btnSignup").click(function () {
...
0
votes
2answers
55 views
MVC2 - Ghost Model Error
My Model:
public class EntryModel
{
[Required]
public string Date { get; set; }
public string Car { get; set; }
public string Engine { get; set; }
...
1
vote
0answers
105 views
Custom ValidationAttribute, not showing at member
I'm working on a somewhat legacy smelling MVC2 project, where someone tried to do a ConfirmMustMatch validation attribute. I fixed it using this PropertiesMustMatchAttribute, but it shows up only in ...
0
votes
1answer
96 views
Asp.Net Mvc 2 Custom Validation Issue
My question is regarding MVC 2 custom validation. I'm stuck on a particular issue and I'm unsure how to get around it. I'm fairly sure it's more figuring out how to do it logically and then ...
1
vote
2answers
448 views
How to add custom validate method for viewmodel
I tried to add custom validator for ViewModel class:
[Serializable]
public class UserViewModel : IValidatableObject
{
public IEnumerable<ValidationResult> Validate(ValidationContext ...
0
votes
1answer
212 views
asp.net mvc 2 client side validation for website url
I have a view where I have a textbox where the user can enter url and process the request. What I want to do is to include client side validation that the url is in a proper format.
Here is what I ...
1
vote
1answer
405 views
ASP.NET MVC/C# - Type casting to an array in a custom required validation attribute
I'm attempting to create a custom required validation attribute which will be able to take in a 1d array of any size and verify that at least one element is not null/empty string. I'm having some ...
0
votes
2answers
329 views
ASP.NET MVC UpdateModel() parameter conversion woes
A forewarning: I've relatively new to MVC and its paradigm and to some of its inner workings, but I'm pretty comfortable with it. This is my second ground-up MVC application and I'm a little stumped ...
0
votes
1answer
333 views
ASP.NET MVC 2 - Some validation errors are not appearing
I'm testing my view/edit model's Data Annotations, and some of the errors aren't showing up. They're all property-level, but they're not showing up as either property-level or model-level. They're ...
1
vote
1answer
473 views
How can I disable a form's submit button if there are DataAnnotation validation errors?
I've attempted binding to the change event of all inputs in the form, and checked to see if there are any validation messages on the page. The problem is that validation seems to occur after the ...
0
votes
1answer
702 views
ASP.NET MVC 2 - Uploaded image validation - Is there more to do than checking file extensions and MIME types?
I have a somewhat complex edit model coming into (surprise surprise) an Edit ActionMethod. One of the model's properties is a HttpPostedFileBase object, which I'd like to validate and display the ...
1
vote
2answers
2k views
Enable/Disable Validation of certain hidden textboxes in mvc 2
I have got [hide] and [unhide] input buttons , the hide button shows some text boxes while the hidden button hide some text boxes, What I want to do is to enable validation only for those boxes which ...
2
votes
2answers
237 views
Custom metadata in validation messages
I have implemented a custom metadata provider extending AssociatedMetaDataProvider. The initial purpose of the class was to take a property name and turn it into Pascal cased words.
I have a new ...
0
votes
1answer
480 views
jquery updateTips method not working when div is on seperate page to the method? ASP.net mvc2
I am trying to add Client-side validation to a jquery dialog which loads an independant aspx page dynamically.
I am using the tutorial given for the modal form in jquery-ui ...
0
votes
3answers
297 views
how to manually call form validations before submitting form using jquery in mvc2
Im using mvc 2, my view is as follows
<% using (Html.BeginForm("ApplyLeave", "ESS", FormMethod.Post, new { id = "formApplyLeave" }))
{ %>
<fieldset>
...
0
votes
4answers
1k views
Mvc doesnt validate input type file
I am using strongly type view model for my view , Validation works for all the text fields but it doesnt work for fileupload , below is the code:
<div class="bg-content-inner">
...
0
votes
1answer
2k views
Validation not working using Data annotation in mvc
I Have created view model with the validation in it, but the validation doesnt works when i submit the form, below is the code :
namespace Products.Models
{
...
1
vote
1answer
2k views
Simple Validation for dropdownlist in mvc using (Html.ValidationMessage)
Hi ,
//Controller
var productList = Enumerable.Range(1, 80).Select(x => new SelectListItem { Value = x.ToString(), Text = x.ToString() });
...
0
votes
0answers
78 views
Custom CMS with ASP.NET MVC2, problem with validation
How do I get full control of how the data annotations like [Required(ErrorMessage = "Title is required")] are handled?
Currently, my system ignores the required annotation and thus accepting a null ...
0
votes
1answer
614 views
Jquery dialog client side validation on “Required!!” fields with asp.net mvc2
I've loaded a form dynamically into a jquery ui dialog. Now I want to add client side validation to this dialog. I've tried Scott Gu's Blog and that works all well and good but doesn't affect the ...
3
votes
2answers
3k views
MVC 2 vs MVC 3 custom validation attributes using DataAnnotationsModelValidatorProvider.RegisterAdapter
I read on some post, but cant find it now that in MVC 3 it was not really needed to create a Validator, only the Attribute. Is this true? I do say I find it confusing that the attribute has the ...
0
votes
1answer
239 views
.net mvc 2 validation: summing up values of serveral attributes
I am using .NET 4 MVC 2 in my project. I basically have two classes, which I use for my validation. Class A is my (main) model, class B is an composite attibute which class A may have. The code looks ...
1
vote
1answer
303 views
.net mvc jquery clientside validation problem
i am using .net 4 with mvc 2 and annotations for validation. I built up an own validationAttribute in order to check if an email already exists in my database. The c# function ismailexisting() returns ...
0
votes
1answer
350 views
Customise Validation summary
I have used html.ValidationSummary to get all errors displayed on top of the page.
This will render list with errors on top of the page.
Example:
<ul>
<li>UserName is invalid</li>
...
10
votes
5answers
1k views
.NET 4 MVC 2 Validation with annotations warning instead of error
I am using .NET 4 with MVC 2 for validating with Annotations. Is there a (simple) solution for giving back a warning instead of the error? So that I am able to get a green or yellow box with a message ...
1
vote
1answer
22 views
How can I validate another model when viewing details of one model?
I am showing a details page of a Movie model with the list of related (child elements) Actor models.
At the bottom of the Actor list, I am rendering a textbox for quick insertion of new Actor related ...
1
vote
1answer
549 views
if(ModelState.IsValid) doesn't work with FormsCollection. What to use instead?
To validate a HttpPost action that's bound to a concrete type, I can use ModelState.IsValid
public ActionResult Create(MyModelType myModel)
{
if(ModelState.IsValid)
{
...
0
votes
1answer
30 views
Asp Mvc What's Easiest way to do client validation without using DataAnnotations?
Folks,
I'm doing an in-house proof of concept for ASP MVC 2.0 (I'm no expert on ASP or Web Technologies either).
I've a requirement for dynamic forms (form details - no of fields, field types, ...



