No me sale, me he ido guiando de lo que me has mandado pero no lo consigo
en Identificador.aspx.vb tengo lo siguiente:
Código vb.net:
Ver originalPublic Class Identificador
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim numeroIdentificador As String
If TxtIdNumIdentificador.Text = "" Then
ValidacionAsterisco23.Text = "*"
validacion4.Text = "Identificador incorrecto"
Else
'Dependiendo del identificador, Me carga una pagin u otra
numeroIdentificador = TxtIdNumIdentificador.text
Response.Redirect("VRHojaLiquidacionGastos.aspx")
End If
End Sub
End Class
Y en VRHojaLiquidacionGastos.aspx.vb tengo lo siguiente
Código vb.net:
Ver originalPublic Class VRHojaLiquidacionGastos
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim numHoja As String
[B]numHoja = Identificador.numeroIdentificador [/B]
End Sub
End Class
Lo que esta en negrita no me lo reconoce, no se como hacerlo.