Posted on: 9/23/2015 6:34:48 PM | Views : 842

Hello 
Hi i need a help as i am writing a paragraph into one those textboxs below where the paragraph including new line as well space but after i adding it and view it via Listview the new lines its not appear all the sentence came into one line so where is the mistake??!! The below is a part of inserting CV in application 
//.... var user = Session["UsrNme"]; cmd.Parameters.AddWithValue("@UID", user); cmd.Parameters.AddWithValue("@Birthday", BirthdTxtBox.Text); cmd.Parameters.AddWithValue("@Gender", GendrDDL.SelectedValue); cmd.Parameters.AddWithValue("@PerInfo", PerInfoTXT.Text); cmd.Parameters.AddWithValue("@WorkEx", WorkExtxt.Text); //...
and here is the code of binding the listview to show CV after adding 
...

Go to the complete details ...