本文介绍了ASP:超链接NavigateURL和eval函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
什么是正确的语法将eval()函数添加到ASP的NavigateURL属性:超链接
What is the correct syntax to add a Eval() function to the NavigateURL attribute of asp:HyperLink?
我想实现如下:
NavigateUrl="http://home/?<%# Eval("U_ID") %>"
链接应该是HTTP://家U_ID的+价值?
但语法是不正确的,我知道。请告诉我正确的拼写?
The link should be "http://home? + the value of U_ID"But the syntax isn't right I know. Whats the correct spelling?
推荐答案
这个尝试
NavigateUrl='http://home/?<%# Eval("U_ID") %>'
或
NavigateUrl='<%# "http://home/?" + (string)Eval("U_ID") %>'
这篇关于ASP:超链接NavigateURL和eval函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!