.Replace(Environment.NewLine, “
”) works on localhost but not when I upload my website to host

后端 未结 4 721
灰色年华
灰色年华 2021-02-12 20:14

I have no idea why is that. Here is my code and it works perfectly when I try it on localhost but when I upload my website my text has no
\'s. Why this

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-12 20:34

    Instead of using Environment.NewLine, try this:

    someString.Replace(@"\r\n", "
    ");

提交回复
热议问题