本文介绍了有没有办法将Html插入到gridview行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用aspnet 3.5,c# - 有没有办法将Html插入gridview行?
Using aspnet 3.5, c# - Is there a way to insert Html into a gridview row?
推荐答案
是的。使用 TemplateField
,然后直接在标记中输入你的html。如果html假设是动态创建的,我会使用 Literal
而不是 Label
。
Yes. Use the TemplateField
, and then type your html directly into the markup. If the html is suppose to be dynamically created I would use a Literal
instead of a Label
.
<asp:GridView id="GridView1" runat="server">
<Columns>
<asp:TemplateField headertext="Column1">
<ItemTemplate>
<br />
<h1>
<%# Eval ("DataColumnName") %>
</h1>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField headertext="Column2">
<ItemTemplate>
<asp:Literal id="Literal1" runat="server" text='<%# Eval ("DataColumnName2") %>'></asp:Literal>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
这篇关于有没有办法将Html插入到gridview行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!