RE: What is the Difference between HTML controls and A...
Control Abstraction: A HTML Server Control has similar abstraction with its corresponding HTML tag and offers no abstraction.
ASP .NET Server Controls have higher level of abstraction. An output of an ASP .NET server control can be the result of many HTML tags that combine together to produce that control and its events.
Object Model: The HTML Server Controls follow the HTML-centric object model. ASP .NET Server Controls have an object model different from the traditional HTML and even provide a set of properties and methods that can change the outlook and behavior of the controls.
Browser Compatibility: The HTML Server Controls have no mechanism of identifying the capabilities of the client browser accessing the current page.
ASP .NET Server Controls can however detect the target browser's capabilities and render themselves accordingly.
RE: What is the Difference between HTML controls and A...
That will work!. Sometimes we may not get the poperty intellisense of the control...but still it has go all the properties. We can set any relevant property of that control. (I found after one successive run of the program, properties intellisense are coming.)