本文介绍了调用Gridview事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要调用gridview事件,例如:

I need to call gridview event such as:

GridView1_RowDataBound(object sender, GridViewRowEventArgs e)



单击按钮后或从页面中的任何区域单击.



after button click or from any region in the page.
How to do it?

推荐答案


int rowIndex = 5;
int colIndex = 1;
GridView1_CellClick(this.gridView1, new DataGridViewCellEventArgs(colIndex - 1, rowIndex - 1));


这篇关于调用Gridview事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 17:20