<asp:BoundField HeaderText='<%=scheduledLogsDateCaptionValue%>'
DataField="DateString"
ItemStyle-Width="15%"
ItemStyle-cssclass="logtd"
ItemStyle-HorizontalAlign="Right"/>
标题文字在网站上显示为<%=scheduledLogsDateCaptionValue%>
而非实际值,任何人都知道修复?
答案 0 :(得分:1)
不仅仅是标头值,所以你只需在其中添加一些免费文字,然后DataField=scheduledLogsDateCaptionValue
?
<asp:BoundField HeaderText="Scheduled date"
DataField="scheduledLogsDateCaptionValue"
ItemStyle-Width="15%"
ItemStyle-cssclass="logtd"
ItemStyle-HorizontalAlign="Right"/>
答案 1 :(得分:0)
如果您想动态更改GridView
的标题文字,您可以在后面的代码中执行此操作
Gridview1.Columns[ColumnIndex].HeaderText = ds.Tables[0].Rows[0]["scheduledLogsDateCaptionValue"].ToString();