![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/09/2005, 08:25
|
![Avatar de aristotelisco](http://static.forosdelweb.com/customavatars/avatar95465_1.gif) | | | Fecha de Ingreso: marzo-2005 Ubicación: Oxnard CA USA
Mensajes: 151
Antigüedad: 19 años, 10 meses Puntos: 0 | |
Imports System.Web.Security
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
spnAuthenticated.InnerText = User.Identity.IsAuthenticated
spnUserName.InnerText = User.Identity.Name
spnAuthenticationType.InnerText = User.Identity.AuthenticationType
End Sub
User.Identity te da esa información. |