Get a Value from HTML Control to WEB Control

  • Thread starter Thread starter Mariame
  • Start date Start date
M

Mariame

Hi Everyone,
How to get a value from an HTML text filed (client side) to textbox (Server
Side) ?

Thanks
 
In order to transfer from control to control, you either do it client side
(which entails JavaScript on the IDs of the controls, or server side, which
entails pulling the HTML value from Request("controlName") and placing into
ControlName2.Text.

Hope this makes sense.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
 
Back
Top