I'm starting to design websites with asp.net in c #, so from the toolbox I have the graphic components as if I were designing a desktop app. When I drag a button, the code shows me:
<asp:Button ID="Button1" runat="server" Text="Button" />
I can also put buttons with an html tag:
<button></button>
Is there a difference? Which one would you recommend me to use? Thanks.