sgreen0 wrote:
Is it difficult to make the user's Real Name required?
I'm new to this forum software and I'm wary to mess with the code without guidance.
Thanks for any help you can offer.
Stephen
|
in register.asp file find this code;
//Check for a username
if (formArea.name.value.length <= 3){
errorMsg += "\n\<% = strTxtErrorUsernameChar %>";
}
and paste that code after it
//Check for a real name
if (formArea.realName.value.length <= 1){
errorMsg += "\n\ttplease fill your real name area!..";
}
Edited by gölge - 30 January 2007 at 7:50pm