View Single Post
Old 10-09-2006, 06:22 PM   #2 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

do you want it auto generated or do you want to validate the users input?

for auto gen:

create the password
set do***ent.formname.fieldname.value = password

for validate

add onsubmit="return validate()" attribute to your form
add javascript function
function validate {
check value here using do***ent.formname.fieldname.value
return true if valid
return false if invalid
}
office politics is offline