Suppose I have a form in view with dynamic row with fields bound to viewmodel like:
<%for (int i = 1; i <= 5; i++)
{ %>
<tr>
<td style="width: 100%">
<%= Html.TextBox("Link", Model.Websites[i.ToString()].Links)%>
</td>
.....
</tr>
<%} %>
When the form is posted, in FormCollection, all data coming from TextBox "Link" is a string separated by comma,. like, Yahoo.com, youtube.com, google.com
Then I can use comma to extract the data to array like:
string[] links = formdata["Link"].Split(',');
But question is: if the data use entered include comma, like "mysite, go.com", the I can get the right data for each item.
How to resolve this issue? is it possible to set special separator for string in FormCollection?