首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

在dataformatstring中对网址中的中文进行编码的有关问题

2012-03-24 
在dataformatstring中对网址中的中文进行编码的问题ahrefxx.aspx?id{0} {0} /a其中{0}代表一个中文

在dataformatstring中对网址中的中文进行编码的问题
<a   href=xx.aspx?id={0}> {0} </a>
其中   {0}代表一个中文字词
如果对第一{0}进行urlencode编码,应该如何写代码?

[解决办法]
<a href= ' <% String.Format( "xx.aspx?id={0} ", Server.UrlEncoder(Eval( "id "))) %> ' runat= "server "> Server.UrlEncoder(Eval( "id ")) </a>

[解决办法]
try ->

<itemtemplate>
<%# String.Format( " <a href=xx.aspx?id={0}> {0} </a> ", Server.UrlEncode(Eval( "id ").ToString())) %>
</itemtemplate>

热点排行