Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/11/2010, 19:14
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 15 años, 7 meses
Puntos: 30
Respuesta: Comprobar textbox distintos a vacíos y guardarlos en una bd

Talvez, puedas mejorar un poco la forma de recorre los textbox, por ejemplo

Código ASP:
Ver original
  1. Private Sub ChangeBtn_Click(ByVal sender As Object, ByVal e As EventArgs)
  2.            
  3.             Dim c As Control
  4.             Dim c2 As Control
  5.            
  6.             For Each c In Page.Controls
  7.                 If c.Controls.Count > 0 Then
  8.                     For Each c2 In c.Controls
  9.                         If c2.GetType.ToString = "System.Web.UI.WebControls.TextBox" Then
  10.                             MySpan.InnerHtml = CType(c2, TextBox).Text
  11.                             CType(c2, TextBox).Text = ""
  12.  
  13.                         End If
  14.                     Next
  15.                 End If
  16.             Next
  17.         End Sub
__________________
http://geekswithblogs.net/jaullo/Default.aspx
Si te he ayudado regalame Karma positivo!!!