我知道我可以将此代码放在标记中以创建C#标记的转发器,但是我可以在VB.net中执行类似的操作
<% foreach (var c in Contacts) { %>
<div class="footer">
<% if (c.Custody != null) { %>
<label>Custody:</label> <%= c.Custody.Name %><br />
<% } %>
</div>
<% } %>
答案 0 :(得分:2)
<% For Each itm In tContacts %>
<div class="footer">
<% If itm.Custody IsNot Nothing Then %>
<label>Custody:</label> <%= itm.Custody.Name %><br/>
<% End If %>
</div>
<% Next %>
这应该可以做到!快乐的编码!