对于我网页上的分页功能,我将使用符号 <,它是一个分隔符。当我运行 html 检查时,它给了我这个错误:
Line 747, Column 318: character "<" is the first character of a delimiter but occurred as data
…quot;, "", true, "", "", false, true))"><< </a>
我知道必须有办法解决这个问题。这是我的 aspx 代码的样子:
<td>
<asp:LinkButton ID="PagerPrev" runat="server" CommandName="Page" CommandArgument="Prev"
Text="< " ToolTip="Previous" />
</td>
如果您在 Text=" 之后看到我使用了 < 这就是 html 错误检查器正在接收的内容。感谢您的帮助。