Guardar datos de un gridview en tabla sql server
De nuevo experto logre agregar los registros al gridview utilice el código siguiente
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
table = New System.Data.DataTable()
table.Columns.Add("Id_Personal", GetType(System.String)) table.Columns.Add("Idioma", GetType(System.String)) table.Columns.Add("Hablado", GetType(System.String)) table.Columns.Add("Escrito", GetType(System.String))
Session.Add("Tabla", table)
End If
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
table = (Session("Tabla"))
row = table.NewRow()
row("Id_Personal") = txtIDP.Text
row("Idioma") = txtIdioma.Text
row("Hablado") = txtHablado.Text
row("Escrito") = txtEscrito.Text
table.Rows.Add(row)
AgregarIdiomas.DataSource = table
AgregarIdiomas.DataBind()
Session.Add("Tabla", table)
End Sub
Esto lo que hace es mostrar los registros en el gridview con un botón de agregar
Ahora me podrías si no es mucha molestia decir como hacer para guardar el gridview en mi tabla idiomas de
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
table = New System.Data.DataTable()
table.Columns.Add("Id_Personal", GetType(System.String)) table.Columns.Add("Idioma", GetType(System.String)) table.Columns.Add("Hablado", GetType(System.String)) table.Columns.Add("Escrito", GetType(System.String))
Session.Add("Tabla", table)
End If
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
table = (Session("Tabla"))
row = table.NewRow()
row("Id_Personal") = txtIDP.Text
row("Idioma") = txtIdioma.Text
row("Hablado") = txtHablado.Text
row("Escrito") = txtEscrito.Text
table.Rows.Add(row)
AgregarIdiomas.DataSource = table
AgregarIdiomas.DataBind()
Session.Add("Tabla", table)
End Sub
Esto lo que hace es mostrar los registros en el gridview con un botón de agregar
Ahora me podrías si no es mucha molestia decir como hacer para guardar el gridview en mi tabla idiomas de
Respuesta de redentradas
1