Buen Día.
Tengo un GridView el cual lleno:
Protected
Sub Page_Load(ByVal sender
As Object,
ByVal e As System.EventArgs)
Handles Me.Load
txtFec_actual.Text =
DateTime.Now.ToString("dd/MM/yyyy")
Dim strConnString As
String = "Data Source=DESARROLLO;Initial Catalog=BD_ DESARROLLO;User ID=sa;Password= DESARROLLO "
Dim con As
New SqlConnection(strConnString)
Dim cmd As
New SqlCommand()
cmd.CommandType =
CommandType.StoredProcedure
cmd.CommandText =
"TraeUsers2"
cmd.Parameters.Add("@RUT",
SqlDbType.Int).Value = TxtRUT.Text.Trim()
cmd.Connection = con
Try
con.Open()
gvUsers.EmptyDataText =
"No Records Found... :("
gvUsers.DataSource = cmd.ExecuteReader()
gvUsers.DataBind()
Catch ex As
Exception
con.Close()
con.Dispose()
End Try
End Sub
Hasta aquí todo
bien.
La pregunta es: ¿como ingresar datos por intermedio del GridView?
Es decir seleccionar una celda e ingresar un valor numérico y luego guardar los valore ingresados en el GridView.
Gracias de antemano