This control allows you to place a text area in your Server Behavior. The control works well for getting the content on the page, but you may have to tweak the SBB generated patterns a bit to allow the SB to be recognized by the Server Behavior palette. Typically the Server Behavior builder puts this pattern in your SB when it generates a parameter: (.*) Unfortunately, this type of pattern matching doesn't recognize line breaks. You will have to change it to something more universal, such as: [^"]* if your next character is a quote, for example. This will pick up all text up to the next quote character, which includes line breaks. Here's an example of the control in use: You can download the control here: Download Text Area Field |