I have an input like ["abc","def","ghi"]
. I have to split this into "abc" "def" "ghi"
in view of C# MVC.
And also i have to display each string value into separate text box of same row.
I have tried like
@Html.TextBoxFor(m => (String.Join(",", m.editPeriodicTask.args))[1], new { @id = "args", @class = "form-control-list" })
but I am not getting the right solution. Can anyone please suggest on this.
Thanks in Advance