The SQL Server Reporting Services Report Manager is functional, but it's not very customizable. The ASPX pages just reference compiled assemblies, so the only real way to modify them is via CSS.
What makes that more difficult is that the SSRS HTML is poorly constructed so that the tags you'd most want to customize don't have Id's or Classes assigned. For instance, the most obvious customization anyone would want to make is to add a corporate logo, and there's no hook for that at all. The folder image is a simple
tag, nestled between two other spacer
tags, packed inside an unidentified
, and all those elements are written out in code1. The problem there is that there's no way, even with some descendant selector trickery, to target that folder image.
|