进入编辑/插入模式时重复显示详细信息视图

发布于 2024-08-22 16:46:42 字数 473 浏览 5 评论 0原文

我有一个包含多个字段的详细信息视图。在同一页面上,我有两个 LinkBut​​ton,可以进入 DetailsView 的编辑或插入模式。

当我单击按钮时,链接的代码隐藏正在执行以下操作:

    switch (buttonCmd.ID)
    {
        case "cmdEdit":
            DetailsView1.ChangeMode(DetailsViewMode.Edit);
            break;

        case "cmdInsert":
            DetailsView1.ChangeMode(DetailsViewMode.Insert);
            break;

这种类型在网站网站的另一个页面中运行良好,但在这个页面上运行不正常...可能是一个糟糕的复制粘贴...

任何可以解释的想法为什么DetailsView显示两次?

I have a DetailsView with several fields. On the same page, I have both LinkButton that enables to go in edit or insert mode for the DetailsView.

When I click on a button, linked code-behind is doing the following :

    switch (buttonCmd.ID)
    {
        case "cmdEdit":
            DetailsView1.ChangeMode(DetailsViewMode.Edit);
            break;

        case "cmdInsert":
            DetailsView1.ChangeMode(DetailsViewMode.Insert);
            break;

This kind is working fine in another page from the site website but not on this one... Probably a bad copy-paste...

Any idea that could explain why DetailsView is displayed twice ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2024-08-29 16:46:42

编辑/插入操作后重新绑定之前清除detailsView的数据源。

Clear the datasource of the detailsView before re-binding after Edit/ Insert operation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文