Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 FormView 控件,它使用 DataSource 控件进行绑定。它具有项目模板,因此会自动显示 New、Edit、Delete 按钮,然后从 DataSource 控件查询中选择适当的查询。
如果我必须从后面的代码中映射 FormView 控件的新建、编辑和删除按钮,方法是什么?
谢谢。
这里最重要的是不要忘记传递CommandName 作为您要执行的操作,即插入、更新、删除...。这将触发FormView 的事件来执行此类操作。
看看这里和这里。