Many time it happens with the multi line text box that it does not save the line break and another things in the text box. I have found a great way to do this..
You can replace the line break with the string replace function for example your text box name
if you want to assign text box to a some value...
txtAddress.Text=objAddress.CompanyAddress.Replace("put here br","\r\n");
if you want to assign text box value to another object
txtAddress.Text=objAddress.CompanyAddress.Replace("put here br","\r\n");
happy programming...
Wednesday, April 25, 2007
Nice succinct post :) I was just looking into how to solve this problem with my site. Wasn't sure what the linebreak characters would be when you extract it from the textbox.
ReplyDeletethank you for your hint,
ReplyDeletehowever, i had tried your hint and i wrote the following:
txtDiagnosis.Text = text.Replace("'\r'", "
")
txtDiagnosis.Text = text.Replace("'\n'", "
")
txtDiagnosis.Text = text.Replace("\n", "
")
txtDiagnosis.Text = text.Replace("\r", "
")
txtDiagnosis.Text = text.Replace("\r\n", "
")
txtDiagnosis.Text = text.Replace("
", "\r\n")
txtDiagnosis.Text = text.Replace("br", "\r\n")
and non of those lines had works successfully
nice tutorial
ReplyDeletehighly appreciated