HTML controls and Web Controls

sureshcd10

Regular
Joined
Dec 25, 2003
Messages
77
-->I placed one HTML Textbox control and made to run as server control
-->I placed one web control Textbox control

Is there any advantage/disadvantage in using one over the other ?

Thank u 4 listening to my silly questions
 
If you are doing a lot of server side code then the WebControls offer a much richer programming model and automatically target the browser in question. If on the other hand you are either migrating from asp / HTML or are involved with a lot of client-side scripting then the HTML controls will be more familiar.
 
Back
Top