ASP.NET - Editar fila en datagrid

 
Vista:

Editar fila en datagrid

Publicado por Eduard (2 intervenciones) el 29/04/2009 10:50:47
Wenas, en el siguiente código me da error al coger el campo "codi" ya que es una columna enlazada ReadOnly y no me deja hacer la conversión a textbox.

Dim command As SqlClient.SqlCommand
con.Open()

Dim commandupdate As String = "UPDATE Noticia SET nottitol=@titular, notdatpub=@data, nottext=@descripcio WHERE notid=@codi;"
command = New SqlClient.SqlCommand(commandupdate, con)

Command.Parameters.Add(New SqlClient.SqlParameter("@codi", SqlDbType.Int, 4))
command.Parameters("@codi").Value = CType(e.Item.Cells(1).Controls(0), TextBox).Text


command.Parameters.Add(New SqlClient.SqlParameter("@titular", SqlDbType.VarChar, 100))
command.Parameters("@titular").Value = CType(e.Item.Cells(2).Controls(0), TextBox).Text

command.Parameters.Add(New SqlClient.SqlParameter("@descripcio", SqlDbType.VarChar, 5000))
command.Parameters("@descripcio").Value = CType(e.Item.Cells(3).Controls(0), TextBox).Text

command.Parameters.Add(New SqlClient.SqlParameter("@data", SqlDbType.SmallDateTime, 4))
command.Parameters("@data").Value = CDate(CType(e.Item.Cells(4).Controls(0), TextBox).Text)

command.ExecuteNonQuery()

Alguien sabe como puedo coger el código? Es que siempre me da este error:

"El argumento especificado está fuera del intervalo de valores válidos. Nombre del parámetro: index"


Muchas gracias

Salu2
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Editar fila en datagrid

Publicado por Eduard (2 intervenciones) el 29/04/2009 11:03:55
SOLUCIONADO

command.Parameters.Add(New SqlClient.SqlParameter("codi", SqlDbType.Int, 4))
command.Parameters("codi").Value = CType(e.Item.Cells(1).Controls(0), TextBox).Text

En vez de hacerlo así hago.

command.Parameters.Add(New SqlClient.SqlParameter("codi", SqlDbType.Int, 4))
command.Parameters("codi").Value = e.Item.Cells(1).Text

Muchas gracias igualmente
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar