We are planing on using the reportviewer control that comes with the standard edition of visual studio 2005.
I have noticed that the rendering is not the same in Firefox and I.E.
Event the tool bar is wrong.
Is this control supposed to work non MS-Browsers
Can I fix it by editing some css files, or do I need to derive my own control from the supplied control, to tweack the html it produces.
It would be nice if it worked for most browser out of the box.
Fred.

Reporting Services, Reportviewer control & browser compatibility.
sebatwerk
pambear
Webprofusion: I've been frustrated by the exact same problem! Can you be more specific about your workaround Insert an empty text box where Do you mean add a column with the full report width
I'm actually generating RDLC programmatically based on the results of a report query, so I can do pretty much anything directly to the RDLC itself...
Thanks in advance.
Phil1234567
Very compatible, you just don't get any features!
http://msdn2.microsoft.com/en-us/library/ms156511(SQL.90).aspx
cartoon
The report viewer will support multiple browsers, including Firefox. However, much of this work was done only recently, so you won't see it in the CTP/Beta releases currently available. Also note that not all browsers will support all functionality. Toolbar zoom, for example, uses IE specific functionality, so it is disabled on Firefox.
zot166249
Or, better yet, is there a fix in the works from MSFT for the Firefox rendering bug
RotcivL
ivernot
.ToolbarDocMapToggle
{
display: block;
float: left;
}
.ToolbarPageNav
{
display: block;
float: left;
}
.ToolbarZoom
{
display: block;
float: left;
}
.ToolbarFind
{
display: block;
float: left;
}
.ToolbarExport
{
display: none;
}
.ToolbarRefresh
{
display: block;
float: left;
}
.ToolbarPrint
{
display: block;
float: left;
}
.ToolbarHelp
{
display: block;
float: left;
}
adam74
Mr Dawson