程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 小tips:asp.net 2.0中在gridview中使用DataFromatString

小tips:asp.net 2.0中在gridview中使用DataFromatString

編輯:.NET實例教程
可能之前不少朋友也已經試過,但我是今天才遇到這個問題,翻查資料後才解決。主要是
  在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 
   
  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved