标签: c# html asp.net
我想显示两个不同条件的句子的特定部分,如何在.aspx页面内写一个if else语句来实现这个目的?
if
else
答案 0 :(得分:2)
您可以在.ASPX页面上附上<% %>的服务器代码:
<% %>
<% if(condition) { %> sentence one <% } else { %> sentence two <% } %>