hi i have a string like "ram,raj,john upto n values"..
i want show like this
ram,
raj,
john,
.
.
upto n
the details are came from database..
i am using this code
string s = DS.Tables[0].Rows[0]["desc"].ToString();
lbl_productdetails.Text= s.Replace(",", ",\n");
if i put breakpoint and chect tat line means the details are come in next line..
but in page it displays the information in single row..
i want to display this in label control..
how to handle this..
need ur suggetsions..
regards
gopal.s