如果在 html 表头中,我会使用:
<th class="titleclass" width="200"><span>Header Text</span> <sup><a href="#link"><span style="font-size: 12px">1</span></a></sup></th>
如何在 asp.net gridview 的绑定字段中使用相同的标题文本。我尝试了以下方法:
<asp:boundcolumn
visible="True"
datafield="Column1"
headertext="<span>Header Text</span> <sup><a href='#link'><span style='font-size: 12px'>1</span></a></sup>"
HeaderStyle-CssClass="titleclass">
<itemstyle horizontalalign="Left"></itemstyle>
</asp:boundcolumn>
这是行不通的。它说“当前位置没有可用的源”,并且我的标题文本的样式未应用(但应用了上缀编号 1 的样式)。有什么想法吗?