1
我需要檢查使用C#選擇的多選項目,我發現了以下異常:從 直放站多選選擇的項目設置問題
錯誤29無法創建類型的對象「System.Boolean」字符串表示'Multiple'爲'Multiple'屬性。
<select id="selProj" class="form-control" multiple="multiple" runat="server">
<asp:Repeater ID="repProject" runat="server">
<ItemTemplate>
<option value="<%# DataBinder.Eval(Container.DataItem, "ProjectId") %>">
<%# DataBinder.Eval(Container.DataItem, "ProjectName") %>
</option>
</ItemTemplate>
</asp:Repeater>
</select>
C#代碼是
var selectedProj = xElements.Element("SelectedProjects").Value.Split(',');
foreach (var pro in selectedProj)
{
selProj.Items.FindByValue(pro).Selected = true;
}
任何幫助嗎?
_ASP.NET_沒有死於所有:)你可能會說** webforms **,但不適用於ASP.NET! –
是啊...我的壞...我打算說webforms ... – Leonardo