进入编辑/插入模式时重复显示详细信息视图
我有一个包含多个字段的详细信息视图。在同一页面上,我有两个 LinkButton,可以进入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑/插入操作后重新绑定之前清除detailsView的数据源。
Clear the datasource of the detailsView before re-binding after Edit/ Insert operation.