如何通过 Web 服务编辑/更新数据
我有一个 C# asmx Web 服务。我正在使用 DataGridView 来检索数据,效果很好。但我也想选择一条记录并更新数据。并编辑数据。然后创建一个按钮事件,将数据发送回 Web 服务,以便更新数据库。你们有什么建议或示例代码我可以作为示例吗?我在 Visual Studio 中完成所有这些代码,
非常感谢您的高级帮助。
I have a C# asmx webservice. I am using a DataGridView to retrieve the data and that works well. But I also would like to select a record and update the data. And editing the data. Then create a button event that sends the data back to the web service so the database can be updated. Do you guys have any suggestions or sample code i might be able to look at as an example? i doing all this code in visual studio
Thank you very much for the help in advanced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所要做的就是与 OnRowUpdating 绑定并调用将更新数据的方法。
请查看以下链接 http://www.dotnetfunda.com/articles/article29.aspx 。
如果您需要进一步的帮助,请随时回复我。
All you have to do is to bind with the OnRowUpdating and call a method that will update your data.
Please have a look at the following link http://www.dotnetfunda.com/articles/article29.aspx.
Feel free to get back to me if you need further assistance.