取得gridview的行值
很久没写了。
取得行值代码很简单,这个事件是点击嵌入的按钮触发的:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int pageRowIndex = Convert.ToInt32(e.CommandArgument);
...
}
记录在此备忘。
取得行值代码很简单,这个事件是点击嵌入的按钮触发的:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int pageRowIndex = Convert.ToInt32(e.CommandArgument);
...
}
记录在此备忘。