如何将数据库值绑定到div?
在我的应用程序中,我想将数据绑定到 div,它位于数据列表中,那么我如何绑定该值。谢谢
in my application i want to bind the data to a div, which is in a datalist so how can i bind the value .thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用包含
Literal
控件的Panel
。Panel
将呈现为div
,Literal
控件呈现为文本。您将数据绑定到Literal
控件的Text
属性。这会给你你想要的。一个div
,其中包含DataList
控件中显示的每个项目的文本。创造性地组合控件,为您提供所需的布局、格式、数据绑定等。如果它变得太复杂,请创建一个用户控件
Use a
Panel
that contains aLiteral
control. ThePanel
will render as adiv
and theLiteral
control renders as text. You will data bind to theLiteral
control'sText
property. This will give you what you want. Adiv
that contains text for each item displayed in aDataList
control.Be creative in combining controls to give you the layout, format, data-binding, and so on that you need. If it gets too complex, create a user-control
使用这个非常有用
use this is very useful
使用 <%# Eval("您的数据字段的名称") %>绑定到数据源中的属性。
Use <%# Eval("Name of your data field") %> to bind to properties in your datasource.