I have a Html Code as following
<%var list = ViewData["list"] as IList<Entity>;%>
<html>
<div>
<%foreach(var detail in list){ %>
<marquee behavior="scroll" direction="up" align ="center"><a href ="">
<%=detail.EventName%></a></marquee>
<%}%>
</div>
</html>
Is not executed well cause of foreach loop can you please suggest me that how should I use marquee that my format is not looks bad ?