ASP.NET(vb.net) & LoginName - The LoginName control displays a user’s login name if the user has logged in using ASP.NET membership. Alternatively, if your site uses integrated Windows authentication, the control displays the user’s Windows account name.
ShotDev Focus:
- ASP.NET(vb.net) & LoginName
Example
Login.aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Login.aspx.vb" Inherits="Login" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> <div> <asp:LoginView ID="LoginView1" runat="server"> <AnonymousTemplate> Please Login <br /> <asp:Login ID="Login1" runat="Server" DestinationPageUrl="Login.aspx"/> </AnonymousTemplate> <LoggedInTemplate> Welcome [<asp:LoginName ID="LoginName1" runat="server" />] , <asp:LoginStatus ID="LoginStatus1" runat="server" /> </LoggedInTemplate> </asp:LoginView> </div> </form> </body> </html>
Login.aspx.vb
Partial Class Login Inherits System.Web.UI.Page End Class
Screenshot
1involved…
…