Display Multi-Select Field in HTML page

Display Multi-Select Field in HTML page

Hello there,

I'm trying to show/display a multi-select field in a HTML page. Below is the code i'm currently using.

  1. <%for each task in job.Task
  2.         {%>            <h4><%=job.Task%></h4>       <%}

 This is how it ends up displaying:

  1. <h4>3094299000000125003,3094299000000125007</h4>
But I need it to display like this:

  1. <h4>3094299000000125003</h4>
  2. <h4>3094299000000125007</h4>

If anyone could point me in the right direction that would be smashing.

Thanks,
Giles.