Currently viewing the category: "Formatting"

Problem: SSRS Report Viewer Toolbar is being rendered with a black background.

SSRS Black Toolbar

 

Solution: Make sure the BackColor property of the Report Viewer control is not set to an empty string (BackColor=”") or set the BackColor property to the desired color.

Example: BackColor=”White”

 

Result:

SSRS White Toolbar

Remove page breaks from your report.

  1. Click anywhere on your tablix.
  2. Right click on any of the gray row or column headers.
  3. Click on Tablix Properties.
  4. Remove page breaks by unckecking the page break boxes.

image

The carriage return character in XML is represented by “
” (without the quotes.)

So, try using 

Example:

<XMLElement>.NET Tips and Tricks&#xD;This other text will be displayed in the next line.</XMLElement>

For reference you might want to look at the Canonical XML Version 1.0 from the W3C at http://www.w3.org/TR/xml-c14n