I have exactly the same problem and besides I'm trying to set the default
export image to GIF. I was looking all over the internet, forums, MSDN.. and
I haven't found anything. Have you found a solution for this? I'd thank you
any idea.
"ScottB" <ScottB@discussions.microsoft.com> escribió en el mensaje
news:53BE3A1C-A85D-451C-861B-D2FCA68F5DA1@microsoft.com...
[quoted text, click to view] >I want to control the names of available rendering formats displayed to
>user
> (e.g., "Default (HTML)" intead of "web page for IE 5.0 or later"). BOL
> has a
> great example (well, except it is bad XML) :
>
> <Render>
> <Extension Name="IMAGE"
> Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageReport,Microsoft.ReportingServices.ImageRendering"/>
> <OverrideNames>
> <Name>Image (EMF)</Name>
> </OverrideNames>
> </Extension>
> </Render>
>
> When I paste this into rsReportServer.config (and remove the slash on the
> Extension element) Report Manager still shows this as "TIFF". My attempt
> at
> fixing the HTML renderer looks like this - but is not effective either:
>
> <Extension Name="HTML4.0"
> Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.Html40RenderingExtension,Microsoft.ReportingServices.HtmlRendering"
> LogAllExecutionRequests="false">
> <OverrideNames>
> <Name>Default (HTML)</Name>
> </OverrideNames>
> </Extension>
>
> I'm assuming that this has been coded in RS, but differently than BOL
> describes it. Any help is appreciated.
>
> Scott