我使用代码来更改从服务器端更改的聚焦行中的标签文本。 我在ASP.net上创建项目的代码是:
protected void gvCuentas_FocusedRowChanged(object sender, EventArgs e)
{
/string Cuenta;
int Indice;
//Se llena el indice segun la fila que seleccionen en el grid
Indice = gvCuentas.FocusedRowIndex;
//Se evalua si no ha seleccionado ninguna que deje el idice en 1
if (Indice == -1)
{
Indice = 1;
}
//Se captura el id de la cuenta seleccionada
Cuenta = gvCuentas.GetRowValues(Indice, gvCuentas.KeyFieldName).ToString();
lblTituloDetalle.Text = Cuenta;
}
如何解决?
答案 0 :(得分:0)
我建议您实现以下方案,而不是在客户端使用您的代码: