2

我正在使用 ASP.NET 4.5 模型绑定通过编辑来呈现 ListView 控件中的项目。

<asp:ListView ID="Results" runat="server" SelectMethod="SelectClientStatus" DataKeyNames="ID" ItemPlaceholderID="itemPlaceHolder" ItemType="ClientStatus" OnItemCommand="Results_ItemCommand" InsertItemPosition="LastItem" UpdateMethod="UpdateClientStatus" InsertMethod="InsertClientStatus">
    <LayoutTemplate>
        <table>
            <tr>
                <th runat="server">
                    <asp:LinkButton ID="SortByDescription" runat="server" ClientIDMode="Static" CommandName="Sort" CommandArgument="Description" Text="Description" />
                </th>
                <th>Active</th>
                <th></th>
            </tr>
            <asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
        </table>
        <agp:PagerControl runat="server" ID="PagerControl" />
    </LayoutTemplate>
    <ItemTemplate>
        <tr>
            <td>
                <%#: Item.Description%>
            </td>
            <td>
                <%#: Item.IsClientActive %>
            </td>
            <td>
                <asp:LinkButton ID="Edit" runat="server" ClientIDMode="Static" CommandName="Edit" CommandArgument="<%#: Item.ID %>" Text="Edit" />
            </td>
        </tr>
    </ItemTemplate>
</asp:ListView>

当我添加我的 EditItemTemplate 时,我有一个复选框,我正在尝试将 Checked 属性绑定到模型......

<EditItemTemplate>
    <tr>
        <td>
            <asp:TextBox ID="Description" runat="server" Text="<%#: BindItem.Description%>" />
        </td>
        <td>
            <asp:CheckBox ID="IsActive" runat="server" Checked="<%#: BindItem.IsClientActive %>" />
        </td>
        <td>
            <asp:LinkButton ID="Update" runat="server" ClientIDMode="Static"
                CommandName="Update" CommandArgument="<%#: Item.ID %>"
                Text="Update" />
            <asp:LinkButton ID="Cancel" runat="server" ClientIDMode="Static"
                CommandName="Cancel" CommandArgument="<%#: Item.ID %>"
                Text="Cancel" />
        </td>
    </tr>
</EditItemTemplate>

这是问题开始的地方,运行页面现在显示一条消息“CS0030:无法将类型'string'转换为'bool'”,提示行...

<td>
<asp:CheckBox ID="IsActive" runat="server" Checked="<%#: BindItem.IsClientActive %>" />
</td>

我错过了什么?如何将 IsClientActive 的值绑定到 Checkbox 控件的 Checked 属性?值得注意的是,在模型中,IsClientActive 属性被定义为布尔值且不可为空。

4

1 回答 1

2

我的错; Checked="<%#: BindItem.IsClientActive %>"应该是Checked="<%# BindItem.IsClientActive %>"(注意省略冒号 (:))

于 2013-02-17T19:24:00.930 回答