在字符文字中使用 eval() 的语法问题

发布于 2024-08-17 00:44:02 字数 337 浏览 5 评论 0原文

我在中继器内有一个链接,我想根据中继器项内的值动态更改 url。

问题是当 href 值像这样时

href='<%# (Boolean.Parse(Eval("HasFile").ToString())==true) ? "www.milliyet.com.tr" : "../Static_Pages_Content.aspx?Parent_ID=Eval("Node_ID")"%>'

我遇到语法错误。当我直接输入“3”这样的值而不是 Eval("Node_ID") 时,它可以正常工作。所以我的问题可能是在这个文字中使用 eval() 的语法。有什么想法吗?

i have a link inside a repeater, and i want to change the url dynamically according to the value inside repeater item.

The problem is when the href value is like this

href='<%# (Boolean.Parse(Eval("HasFile").ToString())==true) ? "www.milliyet.com.tr" : "../Static_Pages_Content.aspx?Parent_ID=Eval("Node_ID")"%>'

I'm gettin a syntax error. And when i directly put the value like '3' instead of Eval("Node_ID") it works correctly. So my problem is probably with the syntax of using eval() in this literal. Any ideas??

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

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

发布评论

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

评论(1

留蓝 2024-08-24 00:44:02

试试这个:(

href='<%# (Boolean.Parse(Eval("HasFile").ToString())==true) ?
  "www.milliyet.com.tr" :
  "../Static_Pages_Content.aspx?Parent_ID=" + Eval("Node_ID") %>'

新行只是为了清晰起见)

Try this:

href='<%# (Boolean.Parse(Eval("HasFile").ToString())==true) ?
  "www.milliyet.com.tr" :
  "../Static_Pages_Content.aspx?Parent_ID=" + Eval("Node_ID") %>'

(new lines for clarity only)

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