如何在gridview中同时使用DataSource和DataSourceID
在 C# asp.net vs05 上工作。我需要保存一些值并在 gridview 上显示它们。所以在按钮事件下我编写了一个保存值的代码,并在 gridview 上显示。我可以保存值但在 gridview 上显示时出现问题。所以我使用 DataSource 。我还设置了 GridviewTask-->Choose Data Source--> DataSourceID
,因为用户需要编辑页面上设置的信息。使用 DataSourceID 后显示此错误消息: DataSource 和 DataSourceID 均在“GridView2”上定义。删除一个定义。
我如何在一个网格视图中使用这两个定义?如果不能的话?那么如何为用户提供这种便利,使他们可以编辑网格上的信息集而无需使用任何其他控件。
work on C# asp.net vs05.i need to save some value and show them on the gridview.So under the button event i write a code that save value ,and show on gridview.I can save value but problem occur when show on gridview.So i use the DataSource .I also set the GridviewTask-->Choose Data Source--> DataSourceID
,because user need to edit information set on the page. after use the DataSourceID show this error message :
Both DataSource and DataSourceID are defined on 'GridView2'. Remove one definition.
How can i use the both in one grid view?if i can not? then how to give user this facility that they can edit information set on the grid with out use any other contorl.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能 - 使用 DataSource 或 DataSourceID - 但不能同时使用两者。
从您的问题来看,尚不清楚为什么您想同时使用两者。您到底想实现什么目标?请澄清。
马克
You cannot - either use DataSource or DataSourceID - but you can't use both at the same time.
From your question, it's not quite clear why you'd want to use both at the same time. What is it exactly that you're trying to accomplish?? Please clarify.
Marc