Hola, como estais? un saludo!
Necesito vuestro favor:
Hasta ahora he logrado colocar un checkbox en el Gridview y selecionar las filas y mostrarlas en el form, pero solo me muestra una! (La primera seleccione y solo esa) asi le quite el check me la sigue mostrando..si alguien puede ayudarme. por favor: este es el code:
For Each Col As GridViewRow In Me.GridCobertura.Rows
Dim chkSel As CheckBox = CType(Col.FindControl("chkSel"), CheckBox)
If chkSel.Checked Then
table = (Session("Tabla"))
row = table.NewRow()
row("NombreCobertura") = Col.Cells(2).Text
row("precio") = Col.Cells(3).Text
table.Rows.Add(row)
FormView1.DataSource = table 'FormView Datasource
FormView1.DataBind()
Session.Add("Tabla", table)
End If
Next
Y en el If NotPostBack...
If Not Page.IsPostBack Then
table = New System.Data.DataTable()
table.Columns.Add("NombreCobertura", GetType(System.String))
table.Columns.Add("Precio", GetType(System.Decimal))
Session.Add("Tabla", table)
End If