ASPxGridView——如何仅使用 DataSource 属性简单地添加示例值?
你好,我有一个 ASPxGridView。其中(对于不知情的人来说)只是一个 DataSource 属性,用于告诉它要加载哪些数据。我的问题是,我只是想模拟一个示例,不需要将其与实际的数据库联系起来。我该怎么做?我基本上只想要几行和一些列,但由于它只需要一个数据源,我不知道该怎么做。 ObjectDataSource 是我正在寻找的吗?
Hello I have a ASPxGridView. In it(for the uninformed) is only a DataSource property for telling it what data to load. My problem is that I'm simply trying to mock up an example and don't need to tie it to an actual database. How would I do this? I basically just want a few rows and some columns but since it only takes a datasource I'm not sure how to do it. Would ObjectDataSource be what I'm looking for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将数据源设置为类似这样的列表:
Just set the datasource to a list of anything like this:
使用 DataTable 的另外两种方式:
Two other ways using DataTable: