【jackyrong 】asp.net 2.0中在gridview中使用DataFromatString
在asp.net 2.0中,如果要在繫結列中顯示比如日期格式等,如果用下面的方法是顯示不了的
DataFormatString=“{0:M-dd-yyyy}”
HeaderText=“CreationDate” />
主要是由於htmlencode屬性預設設定為true,已防止XSS攻擊,安全起見而用的,所以,可以有以下兩種方法解決
1、
DataFormatString=“{0:M-dd-yyyy}”
HtmlEncode=“false”
HeaderText=“CreationDate” />
將htmlencode設定為false即可
另外的解決方法為,使用模版列
Text=‘‘>
Text=’‘>
HeaderText=“CreationDate” />
主要是由於htmlencode屬性預設設定為true,已防止XSS攻擊,安全起見而用的,所以,可以有以下兩種方法解決
1、
HtmlEncode=“false”
HeaderText=“CreationDate” />
將htmlencode設定為false即可
另外的解決方法為,使用模版列
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-332343/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【jackyrong 】asp.net 2.0中 updatepannel(1)ASP.NET
- 【jackyrong】asp.net 2.0中使用sitemapDATAsource做頁面導航ASP.NET
- 【jackyrong 】asp.net 2.0中TREEVIEW中動態增加結點ASP.NETView
- asp.net中GridView匯出資料ASP.NETView
- 定製gridview使其在listview中當作item使用View
- 在asp.net handler 中 使用 sessionASP.NETSession
- GridView 中 DataFormatString 的使用ViewORM
- 【jackyrong】asp.net 2.0常見問題技2ASP.NET
- 在gridview中編輯時 用dropdownlistView
- jwt-在asp.net core中的使用jwtJWTASP.NET
- 巧用CSS解決asp.net中Gridview邊框樣式問題CSSASP.NETView
- 如何讓Gridview在沒有資料的時候顯示錶頭(asp.net)ViewASP.NET
- 橫向Gridview使用View
- 使用GridView管理類View
- ASP.NET - GridView實現點選編輯列ASP.NETView
- C# asp.net 把GridView資料 匯出到 ExcelC#ASP.NETViewExcel
- 【jackyrong】asp.net ajax 1.0 精選ajax controltookit控制元件介紹2ASP.NET控制元件
- 【dinghao】在Asp.net中呼叫非同步方法--使用訊號量ASP.NET非同步
- ASP.NET 匯出gridview中的資料到Excel表中,並對指定單元格換行操作ASP.NETViewExcel
- gridview中實現分頁View
- 在 ASP.NET Core 中禁用HTTPSASP.NETHTTP
- 在ASP.NET中防止注入攻擊ASP.NET
- 在ASP.NET Core中使用ViewComponentASP.NETView
- 在ASP.NET中使用.NET元件 (轉)ASP.NET元件
- asp.net GridView列資料滑鼠移入顯示提示資訊ASP.NETView
- 【轉】在ASP.NET MVC中,使用Bundle來打包壓縮js和cssASP.NETMVCJSCSS
- comet在asp.net中的實現ASP.NET
- 在ASP.NET Core中用HttpClient(六)——ASP.NET Core中使用HttpClientFactoryASP.NETHTTPclient
- [譯] 在 ASP.NET Core 中使用 SignalRASP.NETSignalR
- 在ASP.NET中使用Microsoft Word文件 (轉)ASP.NETROS
- 在ASP.NET Core中使用brotli壓縮ASP.NET
- GridView和DataSource的聯合使用View
- 使用ObjectDataSource實現GridView分頁ObjectView
- Gridview 中的radio唯一選中View
- Asp.Net Core WebAPI+PostgreSQL部署在Docker中ASP.NETWebAPISQLDocker
- IoC在ASP.NET Web API中的應用ASP.NETWebAPI
- 在 ASP.NET 中實現不同角色的使用者使用不同登入介面的方法ASP.NET
- 聊聊asp.net中Web Api的使用ASP.NETWebAPI