Eval 字段,如果为空则显示其他字段
我将如何让它工作,这似乎输出第二个输出语句。我试图查看 ContactFirstName 和 ContactLastName 中是否有值,如果没有,那么我希望它在名称的位置显示公司。我以正确的方式处理这件事吗?
<%# (Eval("ContactFirstName") == "" & Eval("ContactLastName") == "") ? Eval("ContactCompany", "") : Eval("ContactCompany", "{0}") %>
How would I go about getting this to work, it seems that this outputs the second output statement. I am trying to see if ContactFirstName and ContactLastName have a value in them if they dont then I want it to display the company in the place of the name. Am I go about this the right way?
<%# (Eval("ContactFirstName") == "" & Eval("ContactLastName") == "") ? Eval("ContactCompany", "") : Eval("ContactCompany", "{0}") %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ToString() 转换为字符串
use ToString() to convert into string