ASP.NET详情查看
如何通过像详细信息视图这样的 ASP.NET 控件显示数据库的多行?
How can i showing multiples rows of a database by a asp.net control like detailsview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何通过像详细信息视图这样的 ASP.NET 控件显示数据库的多行?
How can i showing multiples rows of a database by a asp.net control like detailsview?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
对于多行,listview非常灵活,值得花时间去熟悉它。
For multiple rows, the listview is very flexible and it is worth it to spend the time to become familiar with it.
尝试 DataGrid
http://msdn.microsoft.com/en-us/library/aa479316 .aspx
try DataGrid
http://msdn.microsoft.com/en-us/library/aa479316.aspx
对于多行,您最好使用:
GridView
http://msdn.microsoft.com/en -us/library/system.web.ui.webcontrols.gridview.aspx
ListView
http://msdn.microsoft.com/en-us/library/bb398790.aspx
DataList (我个人非常喜欢DataList)
http://msdn。 microsoft.com/en-us/library/system.web.ui.webcontrols.datalist(VS.80).aspx
中继器
http://msdn.microsoft.com/en -us/library/system.web.ui.webcontrols.repeater.aspx
这些控件是用来显示多个记录的。
For Multiple Rows you are better of with a:
GridView
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.aspx
ListView
http://msdn.microsoft.com/en-us/library/bb398790.aspx
DataList (I personally like the DataList a lot)
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datalist(VS.80).aspx
Repeater
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater.aspx
Those are controls that were made to show more than one record.