string sTxt = "";
foreach(string s in textBox1.Lines)
{
sTxt = sTxt + s + "\\n";//每行末尾都加一个回车
}
// sTxt insert into database ; 带回车插入到数据库中,拿出来也是一样的。要注意数据库中字段的格式
1.使用RichTextBox
2.加工TextBox的值
你存入的是什么格式 取出来还是一样的