To insert a paragraph with a line feed, hyperlink, or any other HTML attribute, you have to insert it dynamically.
From the custom attributes
-
In the Form Designer, insert a
ReadonlyText
from the Tools drop-down list.
-
Set your HTML text from the custom attributes:
-
Edit your field.
-
Click the Custom Attributes tab.
-
Scroll through drop down list to the ASP.NET Properties section, and select the
text
attribute. -
Click
+
. -
Set your HTML in the Value text area
-
From the .NET code
Another solution is to set your HTML text from the .NET code. This method overrides the ASP.NET Text
attribute.
-
After adding the
ReadonlyText
, click .NET on the right-hand side of the toolbar. -
Uncomment the
Page_Load
method if needed. -
Set the
Text
property as shown below:REQUEST_READONLYTEXT1.Text = "To find a lot of information about WorklowGen:<br><a href='http://www.workflowgen.com'>Click here</a>";