表单元格中的asp.net内联标记



使用内联语法时,我无法正确显示"样式宽度"值。它呈现为:

style="

任何建议。

<table>
    <tr id="tr1" runat="server">
        <td style="width: <%= this.LabelColumnWidth %>">
            &nbsp;
        </td>
    </tr>
</table>

旋转

<td style="width: <%# this.LabelColumnWidth %>">

编辑:(现在我知道了更多)

你为什么不在td上加一个id,比如这个

 <td id="test" runat="server">

然后在代码后面做

 test.style = "width: 100px;" // or whatever

内联尝试2:

试试

<td style='<%# "width: " + this.LabelColumnWidth %>'>

思考也许整个事情都需要在内联代码中。而不仅仅是宽度的值。

Eric提出的答案几乎是正确的。只是,它应该有一个=而不是#

<td style='<%= "width:" + this.LabelColumnWidth %>' > 

只有当您需要包含eval()或bind()函数时,才会使用哈希。否则,请使用=符号。

相关内容

  • 没有找到相关文章

最新更新