include sample_top.html
Caravan Business Server>Examples>Temporary Variables


String Concatenation

Var temp temp(firstname)="Chris" temp(lastname)="Johnson" temp(fullname)= temp(firstname) temp(fullname(01))+= " " temp(fullname(01))+= temp(lastname) "First name is "; temp(firstname);"
" "last name is "; temp(lastname);"
" "Full name is "; temp(fullname);"
"
  include sample_bottom.html