-1

我知道我可以将此代码放在标记中以创建 C# 标记的转发器,但我可以在 VB.net 中做类似的事情吗

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

1 回答 1

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

这应该可以解决问题!快乐编码!

于 2012-12-21T21:54:03.150 回答