I got one multiline textbox call txtDesc. The user can key in multiline value such as :
Hai. I\'m robot. Please feed me.
I want to save into da
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("", vbCrLf) txtDesc.Text = strDesc