M
Masudur
Hi,
What's the difference between a normal web element:
<input type="text" id="txtname" name="txtname" runat="server">
vs webcontrol text box:
<asp:Textbox id="username" Columns="10" runat="server">
</asp:TextBox>
When should we use the normal input text box and when should we use the asp
textbox?
please advise.
Thanks.
----------------------------------------------------------
----------------------------------------------------------
color]
All Asp.net server controls eventually translated to html elements
when the page gets rendered...
Asp.net server controls provide more user friendly programming
environment...
for instance developers are use to access a Text Field by Control.Text
Property...
but in html you got to access via control.value ...
when control.Text is more meaning full... in programming a
application...
Thanks...
Masudur