26/02/2010, 05:53
|
| | Fecha de Ingreso: junio-2006
Mensajes: 84
Antigüedad: 18 años, 5 meses Puntos: 1 | |
Respuesta: Null -.- Me autosoluciono
Código:
Try
If Membership.GetUser.ProviderUserKey Is Nothing Then
msguser.Text = "No has iniciado sesión!"
Else
Dim UserID As String
UserID = Membership.GetUser.UserName.ToString()
msguser.Text = "Bienvenido " & UserID
End If
Catch ex As Exception
msguser.Text = "No has iniciado sesión!"
End Try
|