Hi,

i have small questions what is more efficient:

Code:
<table>
  <tr>
       <td>
             Some string
       </td>
  </tr>
</table>
or

Code:
<table>
  <tr>
       <td>
           <asp:Label ID="lblSomething" runat="server" Text="Some string"></asp:Label>
       </td>
  </tr>
</table>
by using the second example i making it more ASP.NET "correct" but i'm also adding unnecessary tags and making the page a bit heavier .. is using the first example is still "Ok" with ASP.NET?
should i only use ASP.NET tags when i need to manipulate its content from the code behind ?

thanks!