I'm using some code I found online but want to understand it better. Works fine but I'm going to need to modify it. What does it mean that much of the js is enclosed in <% %> brackets? Code follows:
<% AllNetLabs.App_Code.GeoHelper helper1 = new AllNetLabs.App_Code.GeoHelper();
foreach (var item in helper1.GetSpatialData())
{ %>
geometries.push('<%=item %>');
<% } %>
<% AllNetLabs.App_Code.GeoHelper helper2 = new AllNetLabs.App_Code.GeoHelper();
foreach (var item in helper2.GetAttributeData())
{ %>
attributes.push('<%=item %>');
<% } %>