salve a tutti
ho trovato online uno script che controlla la disponibilità o no di un username in fase di registrazione, solo che ha una pagina php e non conoscendo php vi chiederei se gentilmente qualcuno potrebbe convertirmela in asp
-------------------------------------------
<?php
//this varible contains the array of existing users
$existing_users=array('roshan','mike','jason');
//value got from the get metho
$user_name=$_POST['user_name'];
//checking weather user exists or not in $existing_users array
if (in_array($user_name, $existing_users))
{
//user name is not availble
echo "no";
}
else
{
//user name is available
echo "yes";
}
?>