1
之前,我有這樣的:檢查ViewData的是空的DropDownList設置爲它
<% if (ViewData["roots"] != null) {%>
<%Html.DropDownList("roots"); %>
<%}%>
但它不工作。如何檢查ViewData是否存在?
之前,我有這樣的:檢查ViewData的是空的DropDownList設置爲它
<% if (ViewData["roots"] != null) {%>
<%Html.DropDownList("roots"); %>
<%}%>
但它不工作。如何檢查ViewData是否存在?
您還沒有任何輸出,並使用DropDownList的幫手不正確。像這樣嘗試:
<% if (ViewData["roots"] != null) { %>
<%= Html.DropDownList("roots") %>
<% } %>
嘗試
ViewData.ContainsKey("roots")
什麼不工作? – 2012-04-09 16:40:34
@amit_g ViewData [「根」]仍未定義,程序崩潰。 – user1322207 2012-04-09 16:44:22