【问题标题】:Add <br> or paragraph in Textarea Text在 Textarea 文本中添加 <br> 或段落
【发布时间】:2013-08-19 14:54:34
【问题描述】:

我使用文本框允许用户输入他们想要的任何文本,然后我通过电子邮件发送此文本。 我想在 textarea 文本中添加段落或
例如,如果用户输入这个

this is test this is test this is test this is test this is test this is test
this is test this is test this is test this is test this is test

然后电子邮件将在一行中显示整个文本,我希望它看起来像两三个段落 像这样的

<p> this is test this is test this is test </p>
<p> this is test this is test this is test </p>

我如何在 C# 中做到这一点

【问题讨论】:

标签: c# asp.net


【解决方案1】:

在 textarea \n 中添加按 Enter 键。在服务器端将 \n 替换为 &lt;br/&gt;

【讨论】:

  • 我该怎么做?我不能要求用户输入\n
  • 当用户按下回车键 \n 添加到 textarea 字符串中
猜你喜欢
  • 1970-01-01
  • 2010-11-05
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-05-24
  • 2011-01-15
  • 2021-08-14
  • 1970-01-01
相关资源
最近更新 更多