我需要一些正确的语法帮助才能通过asp.net inline
执行替换<asp:Label ID="Label4" runat="server" Text='<%# Replace( Environment.NewLine, "<br />") Bind("stTxt") %>'></asp:Label>
只需快速轻松修复即可显示回车符/换行符。
答案 0 :(得分:2)
这应该可以解决问题
Text='<%# Eval("stTxt").ToString().Replace(Environment.NewLine, "<br/>") %>'