Por favor una Ayuda.
No puedo editar campos en texbox jalados de un data Grid mediante HyperLink, pareciera que que los datos cargados a un texbox del data grid por medio de un HyperLink estuviera bloqueados y me impiden actualizar dichos datos. Cuando lo edito el dato jalado en el texbox siempre se mantiene y no me agrega o modifica dicho dato: El ejemplo esta en Aspx Net y es el siguiente:
 
String strcn = ConfigurationSettings.AppSettings["cnSegPoa"];
SqlConnection conexion = new SqlConnection(strcn);
conexion.Open();
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter();
 
sql= "Update PoaObjGesI set  ObjOGIDescrip=@Descrip where OBGid = "+id2+"";
 
SqlCommand usrCmd = new SqlCommand(sql, conexion);
 
usrCmd.Parameters.Add("@Descrip", SqlDbType.NVarChar, 150);
usrCmd.Parameters["@Descrip"].Value = TextBox1.Text;
 
usrCmd.ExecuteNonQuery();
conexion.Close(); 
  
 
