Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我在 ASP.net 网格视图中将标题属性设置为空白时,它都不会显示在 html 中。如何在 gridview 中添加空标题,以便在 html 中显示为<caption/>而不是根本不显示。
<caption/>
<asp:GridView ID="gvClients" runat="server" Caption="">
您能否更详细地说一下,如果网格或表格标题没有任何文本,为什么需要标记?
如果您因特定原因需要它,那么您可以在代码中添加如下空格。
<asp:GridView ID="gvClients" runat="server" Caption=" ">