gracias por el dato pero doy un ejemplo de lo que estoy haciendo para el titulo y me dicen si esta bien o no
CONTROL:
Código:
Private titulo As String
Public Property encabezado() As String
Get
Return Me.titulo
End Get
Set(ByVal value As String)
Me.titulo = value
End Set
End Property
Public Sub New(ByVal enca As String)
titulo = enca
End Sub
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
lbltitulo.Text = titulo
end sub
y para la pagina de donde lo llamo es
Código:
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
Dim titulo As New wucUsuarioaplicacion("Catálogo Imputaciones")
End Sub