通过 ASP.net 的复选框单击事件将数据插入 Access 数据库
我正在尝试制作 asp.net 页面
标准
我有产品列表。 (使用listview)
ProductID Proudct name Price ADD TO CART(checkbox)
现在我使用access 2007作为数据库。 C# 用于代码隐藏文件。我想将产品添加到复选框事件的数据库中。因此,如果用户选中 20 项中的 10 项复选框。我想在复选框事件上编写插入查询
是否可以做到?如果可能,请向我提供知识/代码,我该怎么做?
请记住,我是新手,正在学习阶段,所以让它变得简单或在评论中添加指导线。
I'm trying to make asp.net page
Criteria
I have product list. (using listview)
ProductID Proudct name Price ADD TO CART(checkbox)
Now I am using access 2007 for database. C# for code behind file. I want add product in to database which is on the event of checkbox. So if user check 10 item check box Out of 20 . I want write insert query on event of checkbox
Is it possible to do it? If it possible please provide me knowledge/ code how can I do it?
Please keep in mid that I am new and learning stage so make it easy or put gudieline in comments.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想使用 OnCheckedChanged 事件。
在你的代码后面:
It sounds like you want to use the OnCheckedChanged event.
And in your code behind: