asp.net mvc 3 - MVC 3 client side validation on textbox list -


if allow user add text boxes view how can still have model validation work correctly? want able send array of fanid's check (which have done successfully). problem remote validation on each text box sends value of first text box.

model:

[displayname("user id")] [remote("validateuser","template",errormessage = "invalid user id")] public string[] fanid { get; set; } 

currently hard coding inputs added.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -