tags:

views:

30

answers:

1

hi all what are the difference between asp.net server control and html server control? when do can i use these controls and which is better to app.

thanks saj

A: 

An ASP.Net server control has a rich set of (server side) methods and/or properties and might not map to a single html element.

An html server control is just the server side representation of one html element.

Which is "better"? That entirely depends on your needs.

Hans Kesting