Save the value from Multiline Textbox into SQL Server with line brea

吃可爱长大的小学妹 提交于 2019-12-02 05:21:19

Love the sample text :)

How are you saving and loading this to/from SQL ? If I have a multiline textbox, the .Text property includes the line break character -

"Hai.\n\I'm robot.\n\Please feed me."

I save this into an NVARCHAR(MAX) field in a table in SQL, and when I load it back into the textbox, I get the line breaks exactly as it was typed in.

Can you post your your load/save code ?

i got the answer :

To save from multiline textbox to database :

  Dim strDesc As String
  strDesc = ReplaceNewLines(txtDesc.Text, True)

To show back from database to multiline textbox :

strDesc = productDetails.ProductDesc.Replace("<br/>", vbCrLf)
txtDesc.Text = strDesc
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!