如何替换数据绑定对象中的字符?

发布于 2024-07-27 03:35:31 字数 485 浏览 13 评论 0原文

我有这个:

<img id="imgField" alt="" runat="server" src='<%# string.Format("images/{0}.jpg", DataBinder.Eval(Container.DataItem,"Name")) %>' />

它从数据绑定名称中的空格渲染 %20。 所以我需要用“”替换所有“%20”,

我尝试过

<img id="imgField" alt="" runat="server" src='<%# string.Format("images/{0}.jpg", DataBinder.Eval(Container.DataItem,"Name")).Replace("%20","") %>' />

,但没有成功......有人知道吗?

谢谢,
马特

I have this:

<img id="imgField" alt="" runat="server" src='<%# string.Format("images/{0}.jpg", DataBinder.Eval(Container.DataItem,"Name")) %>' />

and it's rendering %20's from the spaces in the databound Name. So I need to replace all of the "%20's" with ""

I tried

<img id="imgField" alt="" runat="server" src='<%# string.Format("images/{0}.jpg", DataBinder.Eval(Container.DataItem,"Name")).Replace("%20","") %>' />

and that didn't work... Anyone know?

Thanks,
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜是你 2024-08-03 03:35:31

%20 值可能是控件解析属性的结果。 如果你想消除空格,请尝试 .Replace(" ", "")

The %20 values are probably a result of the control parsing the attribute. If you want to eliminate spaces try .Replace(" ", "")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文