Answers for "session name asp.net"

C#
1

what is session management in asp.net

Session is a State Management Technique. 
  A Session can store the value on the Server.
  It can support any type of object to be
  stored along with our own custom objects
Posted by: Guest on January-21-2021
0

c# user name session

UserAccount.UserAccountCollection userAccounts = UserAccount.GetInstances("Name='ASPNET'");
foreach ( UserAccount userAccount in userAccounts)
{
MessageBox.Show("Name : "+userAccount.Name
+"nFullName : "+userAccount.FullName);
}
Posted by: Guest on October-03-2020

C# Answers by Framework

Browse Popular Code Answers by Language