Showing posts with label convert to html. Show all posts
Showing posts with label convert to html. Show all posts

Thursday, July 29, 2010

To Replace Textbox Enter Key With
for Html

In order to replace textbox (txtComments) text enter key with
for html view :




string strComments = txtComments.Text.Replace("\r\n", "<br >");

strComments = txtComments.Text.Replace("\r", "<br >");

strComments = txtComments.Text.Replace("\n", "<br >");



Now use strComments instead of txtComments.Text...!!!!