How can I replace "Enter" in one of the fields in the database with a space
Actually, I tried the codes below in vb.net, but not working for them for me,
address = Replace(address, System.Environment.NewLine, " ")
or
address = Replace(address, vbNewLine, " ")
or
address = Replace(address, Chr(13), "")
Language: Vb.net Database: MSSQL 2005
Thank you in advance
source share