首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么让邮件内容换行

2012-04-02 
如何让邮件内容换行以下代码除了&,其余都是原样显示,没有换行:-------------------------DimWebmailMsgAsS

如何让邮件内容换行
以下代码除了   &   ,其余都是原样显示,没有换行:
-------------------------
  Dim   WebmailMsg   As   String   =   "Full <br>   Name:   "   &   UserName   &   ControlChars.Cr   &   _
                                                                              " <br   /> \r   \nUser   Name:   "   &   UserName   &   ControlChars.Cr   &   _
                                                                              " <br   /> \r   \nUser   Email:   "   &   user_email   &   ControlChars.Cr   &   ControlChars.Cr   &   _
                                                                              " <br   /> \r\nTo   confirm   this   registration,   log   on   to   UserMain   page,   activate   the   user,   set   the   access   right   and   send   a   confirmation   to   the   user.   If   the   user   does   not   provide   the   salary   info,   please   contact   the   user   to   obtain   those   neccessary   info. "   &   ControlChars.Cr   &   ControlChars.Cr   &   _
                                                                              " <br   /> \r\nEmail   sent   via   GearUp   Match   web   interface. "

受到的邮件内容如下:
--------------------------------------
Full <br>   Name:   ert345 <br   /> \r   \nUser   Name:   ert345 <br   /> \r   \nUser
  Email:   sss@s33s.ss <br   /> \r\nTo   confirm   this   registration,   log   on   to   UserMain
  page,   activate   the   user,   set   the   access   right   and   send   a   confirmation   to   the   user.
  If   the   user   does   not   provide   the   salary   info,   please   contact   the   user   to   obtain   those
  neccessary   info. <br   /> \r\nEmail   sent   via   GearUp   Match   web   interface.


[解决办法]
mail.BodyFormat = MailFormat.Html
这样呀~~~
[解决办法]
换行:&lt;br&gt;

热点排行