我有一个列出一些 SQL 数据的 Gridview。我有一个带有编辑模板的 Formview 设置。然后我想要 Gridview 中的 LinkButton,在 formview 中打开编辑,并在 gridview 中选择条目。
我有这个从 Gridview 捕获我的编辑命令,但是我不知道如何触发我的 Formview?
public void newsEdit_Command(Object sender, CommandEventArgs e) {
//Trigger formview edit from here...
//e.CommandArgument contains my ID of the selected row in gridview.
}