how to send from one text box to other

Hai,

i have data in a text box from database.
I want to add/delete some of the data from that text box to another text box. How can I do that.
it is like selecting skills from one text box to another text box and submit it to another page in a job search site.

thanks for Help in advance
[315 byte] By [julie123] at [2007-11-18 2:14:43]
# 1 Re: how to send from one text box to other
TextBox2.Value=iif(isnull(TextBox1.SelText),"",TextBox1.SelText)

-or-

TextBox2.value=TextBox1.SelText
M Owen at 2007-11-10 0:02:33 >