【发布时间】: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# 中做到这一点
【问题讨论】:
-
我敢打赌这可以满足您的所有需求stackoverflow.com/questions/2015563/…