本文介绍了用户在sqlserver中保存的多行texbox中的格式化不显示格式化 - 在其他页面的多行文本框中获取时的线条中断的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个多行文本框,如电子邮件正文我在用户给定的格式中保存用户输入,但当我在另一页中获取此信息时,具有相同的多行文本框,然后所有信息都有格式化 - 作为换行符。



删除喊叫[/编辑]

i have a multiline textbox like as a Email body i save the user input in user given formatting, but when i fetch it this information in another page , having same multi line textbox ,then all the information having formatting --- as line break.

Removed shouting[/Edit]

推荐答案

'This is line 1.' + CHAR(13)+CHAR(10) + 'This is line 2.'





c#需要在应用程序中实现的代码



c# code that you need to implement from your application

string data = "Good Morning\r\nI am fine";
string newData = data.Replace("\r\n","CHAR(13)+CHAR(10)");
and that newData will be store/read to sql server.


这篇关于用户在sqlserver中保存的多行texbox中的格式化不显示格式化 - 在其他页面的多行文本框中获取时的线条中断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 08:24