get user name from session c# asp code example
Example: c# user name session
UserAccount.UserAccountCollection userAccounts = UserAccount.GetInstances("Name='ASPNET'");
foreach ( UserAccount userAccount in userAccounts)
{
MessageBox.Show("Name : "+userAccount.Name
+"\nFullName : "+userAccount.FullName);
}