I have a .NET 4.0 website, where there is some text on the login page and home page stored in SQL Server 2008. There's a page in the site to edit both of these texts.When I click the link to edit, they display fine in a multiline textbox. However, all line feeds are doubled when the stored procedure retrieves them from the database.\[code\]ALTER PROCEDURE [dbo].[usp_WEB_getSiteConfig]AS SELECT login_text, home_text FROM WEB_Site_Config RETURN\[/code\]Text area contains:\[quote\] RHIOTest Home Page Text RHIOTest Home Page Text Line 2\[/quote\]Displayed on home page:\[code\]RHIOTest Home Page TextRHIOTest Home Page Text Line 2\[/code\]