In below link there is add button which allows you to ADD multiple textbox which i am using on my application.
http://jsfiddle.net/cN5SR/200/
Now I want to know how can I bind that array of string value with my ViewModel.
let’s say if my property in ViewModel is as below:
Public class MyViewmodel
{
Public string[] players { get; set; }
}
Steven Sanderson wrote a very nice blog post on exactly this subject.