我想在视图页面中检查 null 或空。我给了代码。但它显示错误。我不知道怎么给?
我的代码是
<% foreach (Models.JobPreferredIndustry jpi in Model.JobPreferredIndustries)
{ %>
<% if (jpi != null) { %>
<%:jpi.Industry.Name %>
<%} %>
<%if (string.IsNullOrEmpty(jpi))
{ %>
----------------
<%} %>
<%}%>