Model.GetRowClass 返回一个带有样-6ren">
gpt4 book ai didi

css - 使用 asp.net 标签设置 css 类

转载 作者:太空宇宙 更新时间:2023-11-04 05:13:38 27 4
gpt4 key购买 nike

我尝试为 HTML 表格动态设置每一行的 CSS 类,我找到了一个博客,其中包含如何执行此操作的信息,但它似乎对我不起作用。

    <% foreach (var item in Model){%>
<tr class= "<% Model.GetRowClass(item, "alt", "reg");%>">

Model.GetRowClass 返回一个带有样式名称的字符串,当我运行它但没有应用任何样式时。

最佳答案

您需要使用 <%= %>而不是 <% %> .试试这个:

<% foreach (var item in Model){%>
<tr class='<%= Model.GetRowClass(item, "alt", "reg") %>'>
<% } %>

关于css - 使用 asp.net 标签设置 css 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8717540/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com