why do i get these errors in c#, and how do i resolve them?
Warning 4 Validation (HTML5): Attribute 'cellpadding' is not a valid attribute of element 'table'.
Warning 5 Validation (HTML5): Attribute 'cellspacing' is not a valid attribute of element 'table'.
Warning 6 Validation (HTML5): Attribute 'width' is not a valid attribute of element 'table'.
Warning 1 Validation (HTML5): The values permitted for this attribute do not include '99%'.
here is the code file
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="CartSummary.ascx.cs" Inherits="UserControls_CartSummary" %>
<table class="CartSummary" border="0" cellpadding="0" cellspacing="1" width="200">
<tr>
<td>
<b>
<asp:Label ID="cartSummaryLabel" runat="server" /></b> ...
Go to the complete details ...