Tagged Questions
2
votes
1answer
134 views
Reject dropdown placeholder when validating in ASP.NET MVC
In my ASP.NET MVC4 model I have a required property:
[Required(ErrorMessage = "Select a class")]
public string ClassName { get; set; }
This is bound to a drop-down list in the Razor view:
...
0
votes
1answer
104 views
validation failing on dropdown MVC
I am using code-first with EF. Validation seems to be failing on a dropdown list with the error System.NullReferenceException: Object reference not set to an instance of an object. This happens when I ...
0
votes
2answers
165 views
dropdownlistfor + jquery validation
I am creating an application in asp .net mvc3 c#. I create a dropdown list but I am unable to do a client side validation using Jquery.
I have looked at numerous articles related to it and know that ...
0
votes
1answer
486 views
how to get selected index of html.dropdownlistfor
i have a dropdownlist:
<%= Html.DropDownListFor(model => model.OperatingSystem, Model.OperatingSystemDropDownBowValues, new { style = "width:142px; margin-left: 10px; font-size: 11px;" })%>
...