so im trying to get a gridview to work! im doing it mannualy
Inline Code Example Here
abre_ligacao()
Dim sqlqtz As String = "SELECT * FROM cobranca ORDER BY cobranca"
'MsgBox(sqlatendimento)
Dim dsqtz As DataSet = GetData(sqlqtz)
If (dsqtz.Tables.Count > 0) Then
GridView1.DataSource = dsqtz
GridView1.DataBind()
Else
MsgBox("Não há dados para carregar!")
End If
fecha_ligacao()
but i get a error using the delete it says i cant be handled
"Erro de runtime de JavaScript: Sys.WebForms.PageRequestManagerServerErrorException: The GridView 'GridView1' fired event RowDeleting which wasn't handled"
btw, im pretty new with asp, javascript ... be patient with me and help me pls