Return to Snippet

Revision: 41586
at February 25, 2011 09:34 by tonatiuh


Updated Code
<%@ Import Namespace="projectname.Models" %>

<%foreach (databasetable record in (IEnumerable)ViewData.Model)
{%>
<%=record.id %>
<%}%>

Revision: 41585
at February 20, 2011 08:30 by tonatiuh


Initial Code
<%@ Import Namespace="projectname.Models" %>

<%foreach (databasetable varname in (IEnumerable)ViewData.Model)
{%>
<%=varname.id %>
<%}%>

Initial URL


Initial Description


Initial Title
For each in view

Initial Tags


Initial Language
C#