shtml如何测试字符串为空

时间:2013-07-16 12:09:27

标签: if-statement boolean shtml

我有一段shtml要修改:

@foreach (Dictionary.DictionaryItem item in countriesParentNode.Children.OrderBy(d => d.Value(languageId)))
{ 
        string itmval = @item.Value(languageId);
        bool empty = @itmval == "";
  <option value="@item.key.ToString().Replace(rootKeyToReplace, "")">@item.Value(languageId) @empty</option>
}

我需要显示&lt;选项...&gt;仅当值不为空时才有位(bool empty为false)。

我试过

if (notEmpty) {}
@if (notEmpty) {}
if (@notEmpty) {}
@if (@notEmpty) {}

所有返回错误。怎么办呢?

我无法找到任何示例,只有一些SSI包含示例

0 个答案:

没有答案