2

在一个页面中,我在更新面板中有一个网格和 2 个下拉列表。用户将从下拉列表中选择,选定的项目将保存并显示在更新面板中。我还计划使用 updateprogress 。

这样做时,我收到了这个设计时错误“ 'System.Web.UI.WebControls.ImageButton'没有名为'UpdateProgress'的公共属性”

我花了很多时间,但无法解决它。请帮我。这是我的代码。

  <tr>
        <td colspan="3">
            <div>
                <asp:Label runat="server" ID="Label1" Text="Update your professional experience below"></asp:Label>
                <asp:UpdatePanel runat="server" ID="upExperience">
                    <ContentTemplate>
                        <asp:DropDownList runat="server" AutoPostBack="true" ID="ddlCategory">
                        </asp:DropDownList>
                        <asp:DropDownList runat="server" ID="ddlValues">
                        </asp:DropDownList>
                        <asp:Button runat="server" ID="btnAddNew" Text="Add New" />
                        <asp:GridView runat="server" ID="gvExperience" AutoGenerateColumns="false">
                            <Columns>
                                <asp:BoundField DataField="Category" HeaderText="Category" />
                                <asp:BoundField DataField="Experience" HeaderText="Experience" />
                                <asp:BoundField DataField="Status" HeaderText="Status" />
                                <asp:TemplateField HeaderText="Remove">
                                    <ItemTemplate>
                                        <asp:ImageButton runat="server" ID="btnRemove" CommandArgument="<%#Eval("ID")%>" />
                                    </ItemTemplate>
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                    </ContentTemplate>
                </asp:UpdatePanel>
                <asp:UpdateProgress runat="server" ID="upp">
                    <ProgressTemplate>
                        <img src="../Images/loading.gif" />
                    </ProgressTemplate>
                </asp:UpdateProgress>
            </div>
        </td>
    </tr>
4

1 回答 1

1

由于 Eval 周围有双引号,您的 ImageButton 服务器控件格式不正确,因此 asp:UpdateProgress 被视为标记的延续。替换为:

<asp:ImageButton runat="server" ID="btnRemove" CommandArgument='<%#Eval("ID")%>' />
于 2013-01-10T00:17:57.503 回答