在标记中对VB中的每个进行编码

时间:2012-12-21 21:50:49

标签: c# vb.net

我知道我可以将此代码放在标记中以创建C#标记的转发器,但是我可以在VB.net中执行类似的操作

<% foreach (var c in Contacts) { %>
<div class="footer">
    <% if (c.Custody != null) { %>
        <label>Custody:</label> <%= c.Custody.Name %><br />
    <% } %>
</div>
<% } %>

1 个答案:

答案 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 %>

这应该可以做到!快乐的编码!