在html中使用c#执行if语句

发布于 2024-10-20 02:48:22 字数 202 浏览 3 评论 0原文

我之前在 Stackoverflow 上看到过一些答案,其中涉及使用“c# 结构”在 ASP.NET 页面的 html 中执行“if”语句。

所以想象一下我想显示 Eval("option1") 如果它不为 null 或 Eval("option2") 如果选项 1 为 null。我该怎么做?

希望这是有道理的......

非常感谢!!!!

I've previously seen answers on Stackoverflow that involve using 'the c# construct' to essentially perform an 'if' statement in the html of a asp.net page.

So imagine i want to display Eval("option1") if its not null OR Eval("option2") if option 1 is null. How do i do this???

Hope that makes sense....

Many Thanks!!!!

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

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

发布评论

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

评论(2

2024-10-27 02:48:22

这是您正在寻找的“if”语义吗?

<% if (condition == true) { %>
  Show something
<% } else { %>
  Show something else
<%} %>

Is this the "if" semantics you are looking for?

<% if (condition == true) { %>
  Show something
<% } else { %>
  Show something else
<%} %>
伪心 2024-10-27 02:48:22

您不需要 if 语句。只需使用

<%= Eval("option1") ?? Eval("option2") %>

You don't need if statement for it. Just use

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