Hi yea, It would be cool if this code could be added to the extension, thus making sure that the first letter of both the first and last name will be capital.
<% 'this will make the first word in each sentence capital function proper(str) proper = "" aStr = split(str," ") for i = 0 to ubound(aStr) proper = proper & ucase(left(aStr(i),1)) & lcase(right(aStr(i),len(aStr(i))-1)) & " " next proper = rtrim(proper) end function %>
How would I add the above function to the firstname at the moment
"#masterfn#;Rec_invoice2:masterFn|
would I just add proper like this
proper:Rec_invoice2:masterFn
regards
Kenny |
|
|