Estou usando uma GridView com várias TemplateField, na coluna Template estou usando um checkbox.
Estou tentando através de uma condição trazer o checkbox marcado ou não.
O que eu fiz:
No evento RowDataBound
While dr.Read
If dr.Item("AREATU_RESPOSTA") = "S" Then
CType(gvAtuacao.Rows(e.Row.RowIndex).FindControl("ChAtende"), CheckBox).Checked = True
Else
CType(gvAtuacao.Rows(e.Row.RowIndex).FindControl("ChAtende"), CheckBox).Checked = False
End If
End While
Da o seguinte erro:
Index was out of range. Must be non-negative and less than the size of the collection.
Pergunta
quintelab
Estou usando uma GridView com várias TemplateField, na coluna Template estou usando um checkbox.
Estou tentando através de uma condição trazer o checkbox marcado ou não.
O que eu fiz:
No evento RowDataBound
Da o seguinte erro:
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
Linha:
CType(gvAtuacao.Rows(e.Row.RowIndex).FindControl("ChAtende"), CheckBox).Checked = True
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.