详细信息视图中的模式没有改变

发布于 2024-08-12 09:57:40 字数 239 浏览 10 评论 0原文

单击编辑模式后,将在详细信息视图中。所有控件都进入编辑模式。我进行更改并在数据库中更新更新数据。但所有控件仍然仅处于编辑模式“实际上,一旦我们点击然后更新,那么我应该再次进入只读模式意味着所有值应该再次显示在标签字段中”

我正在这样做仅在 .cs 文件中 没有使用 sqldatadource 或对象数据源,

现在 这个功能没有发生在我身上。这是什么问题?

期待解决方案 谢谢

in details view once i click edit mode. all the controls are getting into edit mode. i make the changes and give update data is updated in database . but still all the controls are in edit mode only "actaully once we give click then update then i should again gone to read only mode means all the values should again be showing in label field"

i am doing this in .cs file only
no sqldatadource is used or object datasource

right now this feature is not happening to me. what is the issue here?

looking forward for an solution
thank you

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

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

发布评论

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

评论(1

青芜 2024-08-19 09:57:40

由于您没有使用任何内置代码来执行更新,因此您可能需要在更新期间手动更改显示模式。

myDetailsView.ChangeMode( DetailsViewMode.ReadOnly );

Since you aren't using any built-in code to do the update, you probably need to change the display mode manually during your update.

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