我可以在不绑定的情况下使用 DetailsView 控件吗?
我想使用 DetailsView
控件,而不将其与数据源绑定(仅在插入模式下),但问题是当我尝试通过 ItemInserting
事件处理程序获取字段的值时我发现 e.Values
属性为空,但有一些字段。
注意:我想使用它(DetailsView
控件)[而不是手动对齐字段],因为它已经有一个主题整个系统,我不想为自定义模板再次从头开始执行此操作。
任何想法!
I wanna use the DetailsView
control without binding it with a datasource (just in insert mode) but the problem is when I try to get the values of the fields throught ItemInserting
event handler I found the e.Values
property empty however there are some fields.
Note: I wanna use it (The DetailsView
control) [instead of allign the fields manually] because there're already a theme for it in whole the system and I don't want to do that again from scratch for custom template.
Any Idea !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊,是的,我写了一篇关于这个主题的博客文章。 http ://weblogs.asp.net/davidfowler/archive/2008/12/12/getting-your-data-out-of-the-data-controls.aspx。
顺便说一句,.NET 4.0 中的 e.Values 不会为空:)。
Ah yes, I wrote a blog post on this topic. http://weblogs.asp.net/davidfowler/archive/2008/12/12/getting-your-data-out-of-the-data-controls.aspx.
BTW in .NET 4.0 e.Values won't be empty :).