
18/09/2008, 03:45
|
 | | | Fecha de Ingreso: noviembre-2005
Mensajes: 403
Antigüedad: 19 años, 5 meses Puntos: 0 | |
Respuesta: #eval("") vb.net Ya lo tengo.
.ASPX
Código:
<%#TienenTexto(Eval("valor"))%>
ASPX.VB
Código:
Public Function TienenTexto(ByVal EboHarleTitulo As String) As String
If EboHarleTitulo <> "" Then
Return "Texto"
Else
Return "no texto"
End If
End Function
|