(C#) ASP.NET Web Control & HTML Control ในภาษา ASP.NET ตัว Web Control และ HTML Control หน้าตาบางตัวจะเหมือนกัน แต่ทำงานต่างกันสิ้นเชิงครับ เพราะ Web Control จะถูกทำงานและควบคุมได้จากฝั่ง Web Server สามารถกำหนด Properties หรือ Attribute ได้ แต่ในส่วนของ HTML Control จะทำงานที่ฝั่ง Client และทำการส่ง Request ให้กับ Web Server อีกทีครับ
- Web Control
<asp:Control id="[Name]" runat="server"></asp:Control>
- HTML Control
<input id="Name" name="Name" type="text" />
<input id="Name" name="Name" type="radio" />
...