populate textarea from model arraylist
- by user281180
I have an arraylist namelist in my model and in my view I need to fill the textarea with the values in the arraylist
{%>
<%=Html.TextArea("Namelist",Html.Encode(namelist))%>
<%}
But i`m having the following in my textarea being dislpayed:
System.Collections.ArrayList...
How to solve this?