I need to do some validation where 1 of 2 fields must be entered. What is the best was to do this in MVC 2?
The fields are;
<%: Html.EditorFor(model => model.contract.ClientOrderNumber)%>
and
<%: Html.TextAreaFor(model => model.contract.InstructionWithoutClientOrder,
new { maxlength = "255", style = "width:200px;height:100px;"})%>