I have set the onchange of the fname and lname flds to be a javascript call setusername so that the username reflects changes in these fields.
Basically left(document.myform.fname.value, 1) + left(document.myform.fname.value, 7)
Just the javascript syntax I am unsure of.
Code: Select all
<SCRIPT language="JavaScript">
function setusername ()
{
document.myform.username.value=?;
}
</SCRIPT>
Any assistane would be appreciated.
-Dickey