Hi,
i have small questions what is more efficient:
orCode:<table> <tr> <td> Some string </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?Code:<table> <tr> <td> <asp:Label ID="lblSomething" runat="server" Text="Some string"></asp:Label> </td> </tr> </table>
should i only use ASP.NET tags when i need to manipulate its content from the code behind ?
thanks!




If you Like it 
Reply With Quote