read from HTML control

  • Thread starter Thread starter Aitham alama
  • Start date Start date
A

Aitham alama

How can I read a value from a html text box and pass it into a web textbox
control?

Regards
 
i know the ID of the client side control(textfield) and the ID of the server
side control(textbox),

So how can i pass the value from the client side control to the server side
textbox control?
 
The javascript statement is simple. Assuming the client control id is
clientId and the server one is serverId, the statement is serverId.value =
clientId.value.

You will need to setup a client-side event to run this code.

Eliyahu
 
Back
Top