gpt4 book ai didi

c# - 替换文本框中的

转载 作者:行者123 更新时间:2023-11-30 22:38:40 28 4
gpt4 key购买 nike

我在数据列表中有一个文本框,其中包含从数据库中获取的文本。有很多 <br>在该文本中,我想要换行符而不是 <br> , 这是它的样子:

((TextBox)(EditProductList.Items[0].FindControl("txtEditDescription"))).Text.Replace("<br>", "\r\n");

 <asp:DataList ID="EditProductList" runat="server">
<ItemTemplate>
<asp:TextBox ID="txtEditDescription" runat="server" TextMode="MultiLine" Height="350px"
Width="350px" Text='<%#Eval("Description") %>'></asp:TextBox>
</ItemTemplate>
</asp:DataList>

我得到了文本,但我得到了 <br>

最佳答案

实际上,您必须再次将 Replace() 返回的字符串分配给 Text 属性。

var textBox = (TextBox)(EditProductList.Items[0].FindControl("txtEditDescription"));
textBox.Text = textBox.Text.Replace("<br>", "\r\n");

关于c# - 替换文本框中的 <br>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6009812/

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