De repente sera algo tonto, pero no hallo la manera...
Tengo 3 cajas de texto y un datagrid
Quiero agregar varias filas al datagrid (con un boton), pero mi codigo solo me genera una, y sobreescribe la primera fila.. algo me falta... q es=?
----------------------------
Dim DT As New DataTable
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not (IsPostBack()) Then
dgdPedido.DataBind()
End If
DT.Columns.Add("Col1", GetType(Int32))
DT.Columns.Add("Col2", GetType(Int32))
DT.Columns.Add("Col3", GetType(Int32))
End Sub
Private Sub btnAgregar_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAgregar.Click
Dim v() As Object = {txt1.Text, txt2.Text, txt3.Text}
DT.Rows.Add(v)
dgdPedido.DataSource = DT
dgdPedido.DataBind()
End Sub
----------------------------------------------------------
Gracias por la ayudita