Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

 

To add a line break in an Output.Write statement

Define a variable for the HTML line break tag using the following

var brString = '<br';

brString += '>';

 

Add the variable into the Output.Write statement(s)

Output.Write(brString + "Line 1");

Output.Write(brString + "Line 2");

Output.Write(brString + "Line 3");

  • No labels