I have a multilingual text box to take input of user with asp.net. I use a different webpage I'm making a printable version of that textbox. First of all I have stored the input from text box to session, then I get it from print multilay page using "label". I am not using the textbox in print material page because at the time of print I can not control the textbox size. My problem is that I will not keep the text format in the previous text box and all the text goes to one line when I I use labels to retrieve the archived text. I tried the following:
session ["text box 1"]. Toother () Change (char.ConvertFromUtf32 (13), "
But when there are more than two places entered in the text box, it is only one place in the label Will show.
Any thoughts? Thank you.
Instead of using labels, try using one, and take a look at this . If you have to display the HTML then I will use the literals instead.
You need to store the HTML values contained in the session, and it is literally tied to print multiple pages.
Comments
Post a Comment