可能之前不少朋友也已經試過,但我是今天才遇到這個問題,翻查資料後才解決。主要是
在ASP.Net 2.0中,如果要在綁定列中顯示比如日期格式等,如果用下面的方法是顯示不了的
<ASP :BoundField DataFIEld=“CreationDate”
DataFormatString=“{0:M-dd-yyyy}”
HeaderText=“CreationDate” />
主要是由於Htmlencode屬性默認設置為true,已防止XSS攻擊,安全起見而用的,所以,可以有以下兩種方法解決
1、
<ASP :GridView ID=“GridVIEw1″ runat=“server”>
<columns>
<ASP :BoundField DataFIEld=“CreationDate”
DataFormatString=“{0:M-dd-yyyy}”
HtmlEncode=“false”
HeaderText=“CreationDate” />
</columns>
</ASP>
將Htmlencode設置為false即可
另外的解決方法為,使用模版列
<ASP :GridView ID=“GridVIEw3″ runat=“server” >
<columns>
<ASP :TemplateFIEld HeaderText=“CreationDate” >
<edititemtemplate>
<ASP :Label ID=“Label1″ runat=“server”
Text=‘<%# Eval("CreationDate", "{0:M-dd-yyyy}") %>‘>
</ASP>
</edititemtemplate>
<itemtemplate>
<ASP :Label ID="Label1" runat="server"
Text=’<%# Bind(“CreationDate”, “{0:M-dd-yyyy}”) %>‘>
</ASP>
</itemtemplate>
</ASP>
</columns>
</ASP>
http://www.cnblogs.com/jackyrong/archive/2006/08/28/488282.Html