alphanumeric string c# code example
Example: generate random alphanumeric string c#
Namespace: System.Web.Security
public string GeneratePassword()
{
return Membership.GeneratePassword(10,1);
}
Namespace: System.Web.Security
public string GeneratePassword()
{
return Membership.GeneratePassword(10,1);
}