
November 29th, 2004, 08:05 PM
|
|
Registered User
|
|
Join Date: Sep 2004
Posts: 10
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
line breaks
Hi all,
I am having a problem with line breaks in ASP.NET. I have a MSSQL 2000 Server running and some fields cotain line breaks. However, when I pull data out of the database the line breaks get lost. I am using a stored procedure to receive the data:
string string = null;
using (IDataReader info = Item.GetInfo())
{
if (info.Read())
{
string = (string)info["parts_to_bill"];
}
}
Any help appreciated,
thanks,
Nima
|