Quantcast
Channel: SQL Server Reporting Services
Viewing all 1418 articles
Browse latest View live

Weird error after upgrade to ReportViewer 2012

$
0
0

After upgrading from ReportViewer 2010 to 2012 - no other changes, running a report gets this error:

0x800a139e - JavaScript runtime error: Sys.InvalidOperationException: 'AtomDataFeedButton' is not a property or an existing field.

The application does not reference AtomDataFeedButton anywhere.

What's going on?

Help most appreciated.


How to make RDLC report two column

$
0
0

Hello

I have a simple report which is supposed to be used for printing stickers. The sticker paper is A4 size and it has two columns. I successfully managed to print data to left column. I also want to print data to right column too. My current report looks like this :

[Title]
[NameLastName]
[Address]

How can I make my report to fill data to two columns? Thanks.

Microsoft report viewer not displaying at all and no error/exception

$
0
0

Good day everybody i been been on this issue for day now. I have a website application i did with visual studio 2008 containing lots of reports and they were all working fine. When i more to visual studio 2012, i change all the microsoft report reference from 9.0.0.0 to 11.0.0.0 and also changed handler from 9.0.0.0 to 11.0.0.0 in both the aspx pages and web.config. When i runned the report, report viewer was not showing and there is no error exception/error message. I want to know if there is anything am not doing well because i have debugged the report many times without any exception. Please i need help 

How to Retrieve .RDL Files

$
0
0

Hi, i have deployed the Report in SQL 2005 server.

i have deleted all the .rdl files now i want to make some changes in the reports which are deployed on SQL Server 2005.

any idea how can i retrieve my .rdl files?

and i also want to migrate these report from SQL 2005 to  SQL 2008 Server.  

SSRS 2008 508 compliance issues

$
0
0

Hello All,

I am facing few 508 compliance issues on verifying the pdf file for reports. I have been looking in below directions to resolve the issue, but no luck yet

1. Finding for a patch or update from microsoft that will update the report server with fixes for 508 issues

2. Tried using jQuery with SSRS to fix rules for different categories that reported issues. For example, thead doesn't exists for tables, alt tag doesn't exists for images etc...

Can someone share something concrete that works with Sql Server 2008 R2?

thanks in advance!

Report Viewer Compatibility

$
0
0

I'm totally new to reports and reportviewer.

I've few reports which were not displaying until the version was changed to 11.0.0.0. this solved a particular issue in our application.

But ...
upon this .. few reports which were displayed good on version 10.0.0.0 stopped displaying. actually showing a blank screen. 

Can we set version compatibility for particular report in specific?

why is version upgrade causing issues? is Report viewer lagging backward compatibilty.

stop prompting credentials while opening report manager in SSRS 2008

$
0
0

Hi All,

Can u please help me on how to stop asking the credential while opening report manager/ report server  inSSRS 2008.

I know we can solve this easily in 2005 by setting permission to IIS.  But I don't know how is here?

I searched lot in google but no success.

Kindly help me.

Thanks a lot.

Printed page size error

$
0
0

I have been using rdlc reports in vs 2013 for generating barcode labels along with some other info.

The PDF that gets generated is of correct dimensions that is (2.5cm x 1.7 cm) but when the print occurs the print is centralized and occupies just a short area of what seems to be an a4 size paper. I have tested in brother p-touch printer as well but its the same issue.  I am using neodynamic webclientprint.

            DataSet3 fd = new DataSet3();
            DataSet3TableAdapters.Inventory_DetailTableAdapter dds = new DataSet3TableAdapters.Inventory_DetailTableAdapter();
            dds.Fill(fd.Inventory_Detail, "210");


            ReportDataSource ds = new ReportDataSource("DataSet3", fd.Tables[0]);

            

            //create PDF version of RDLC report
            PageSettings pageSet = new PageSettings();
            LocalReport myReport = new LocalReport();
            
            myReport.ReportPath = Server.MapPath("~/BarcodeReport.rdlc");
            myReport.DataSources.Add(ds);

            ReportPageSettings rptSet = myReport.GetDefaultPageSettings();
            pageSet.PaperSize = rptSet.PaperSize;

            //Export to PDF. Get binary content.
            string mimeType;
            string encoding;
            string fileNameExtension;
            string[] streams;
            Warning[] warnings;

            string deviceInfo = "<?xml version='1.0' encoding='UTF-8'?>" +"<DeviceInfo>" +"<OutputFormat>PDF</OutputFormat>" +"<PageWidth>2.5cm</PageWidth>" +"<PageHeight>1.8cm</PageHeight >" +"<MarginTop>0cm</MarginTop >" +"<MarginLeft>0cm</MarginLeft >" +"<MarginRight>0cm</MarginRight >" +"<MarginBottom>0cm</MarginBottom >" +"</DeviceInfo>";


            

            byte[] pdfContent = myReport.Render("PDF", deviceInfo, out mimeType, out encoding, out fileNameExtension, out streams, out warnings);

            
            //Now send this file to the client side for printing
            //IMPORTANT: Adobe Reader needs to be installed at the client side

            bool useDefaultPrinter = (Request["useDefaultPrinter"] == "checked");
            string printerName = Server.UrlDecode(Request["printerName"]);

            //create a temp file name for our PDF report...
            string fileName = Guid.NewGuid().ToString("N") + ".pdf";

            //Create a PrintFile object with the pdf report
            PrintFile file = new PrintFile(pdfContent, fileName);
            //Create a ClientPrintJob and send it back to the client!
            ClientPrintJob cpj = new ClientPrintJob();
            
            //set file to print...
            cpj.PrintFile = file;
            
            //set client printer...
            if (useDefaultPrinter || printerName == "null")
                cpj.ClientPrinter = new DefaultPrinter();
            else
                cpj.ClientPrinter = new InstalledPrinter(printerName);
            //send it...
            cpj.SendToClient(Response);




ReportViewer - Blank Report

$
0
0

Report is blank on server (displays the report viewer header/menu, but no data).  Works in local development and I have confirmed that the query returns data.
I am not using paramters.

IIS 7.5, ReportViewer 11, Windows 2008R2, Forms Authentication, Integrated Mode, ASP.net 4.5, same behavior in FireFox 31.5 and IE 9

Things I have tried...

1) Added managed handler to web.config   

<add name="ReportViewerWebControlHandler" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />

2) Set Trust level to full in web.config

<trust level="Full" />

3) using a basic page without no master

4) Set AsyncRendering = False

5) Tried setting Doc Type in .aspx

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

6) Tried setting meta tag in .aspx

<meta http-equiv="x-ua-compatible" content="IE=5">

7) Tried setting header in code behind Page_load event

Response.AppendHeader("X-UA-Compatible", "IE=edge"); 

8) Tried setting app pool to classic.  This completely broke my website and was unable to load any pages including the report page

Additional Info...

When I view source the it does show the data, just is not visible in the browser

<!-- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> --><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><!-- <meta http-equiv="x-ua-compatible" content="IE=5" /> --><title></title><style type="text/css">



    a:link {
        color: #333;
    }

    a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}

    </style></head><body><form method="post" action="Basic.aspx" id="form1"><div class="aspNetHidden"><input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /><input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /><input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" /></div><script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
    theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]></script><script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZGpZktXxMsd_DgU_uD4nULhEUywUG29dTUSEACD0kvLV_LrtU4VrMS6f3IVig-SzNg2&amp;t=635328563960000000" type="text/javascript"></script><script src="../Scripts/WebForms/MsAjax/MicrosoftAjax.js" type="text/javascript"></script><script type="text/javascript">
//<![CDATA[
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
//]]></script><script src="../Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js" type="text/javascript"></script><script src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=ViewerScript" type="text/javascript"></script><script src="../Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js" type="text/javascript"></script><div class="aspNetHidden"><input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="4542D05B" /><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="JIWOvvRRJDL4v1rc6uGnrVT41lQhsh3tQ5kNCbb471UD1bGYv1kfphMRNUlpRNlFnNmOqm+ZKBM0Vg6cdfA3R0zOksadF/79+SrTYVdzWRA0xOqFDkyYG2Lvcgx6Trlp4mJgLS23oVKCE8wWiF9yyzXQVzeql2UdphZupyClhmyvT4OaFQ3YHbUWTM2bJAuxL0hjVjqtmIA8qINL4Z+6EoLWKNLTVUlpsNZCQ78Evkl75+v+9eWIf0nI8AgUcBuF5PkSj/BHYF0n3dQAyHICJBsBzaySwqXDquVemeoRBErp+uJ0NSSk0xDmsCdjC1EPTf5ICWBxmL1fowB2TviOAblVutgQQR2NaGjPNr/0HAWdlN/V7jUzo47CX6YcvdDsqU1kkuHZZwLOanwlMilCFyh0ruq3902424GxlI7IQDZWda5q2ooBPlSUSPP1p6fshJbjvI0v+eur9hKZngIX4OSghGZZtgmC61XsQ80vLcKSzrl1rXqAyWeaH6pH2Brs17wezEu6mjPIE+pMeyzaaNLdaztY6jGTJrM4dAmRKbw1P7cj0LXeEpUn9eAvSD5AR0ujjgijn3fCi56pL+kso9hmg4CRdJbMPYyk4JahI+OxuZKHHgMDOBxfbAeLaj1iA7Um3wvNAJa8jyDKCm95I/hjQJ4weUSkGLTLa5twusqfcvHrLZgv4tMRCeJasd2bfKiZLMi8RhK37wl4nwfA3NhnDF+DTEkG0QgghOXhwPVVUOQAJiIQlcPpkH3rurDPGDF3sm39qAgl7NrEEMqDLS5s/uxX/y9qARN17GM2DXbKwwc7hqu/EAIw2oaaHSmsFT+y7Kc/uffOo12fZwUQaSDPUF30M1bVqb4+2UVvUqsUyEWxT4aJreJn5iwd4JgcuZN8WgW7KmgNetLV2ES1Rkqci27XohbHbsJAKWyf2wEUTuHv2gmwVSzGqAxHHLBm32zgf3VkjOgyDMhCG8SjVQ==" /></div><div></div><script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ScriptManager1', 'form1', ['frvTotalServices$ReportViewer','','frvTotalServices$DocMap','','frvTotalServices$ctl09$ReportArea',''], [], ['rvTotalServices$ctl09$ReportControl$ctl00',''], 90, '');
//]]></script><br /><noscript>&nbsp;Your browser does not support scripts or has been configured not to allow scripts.</noscript><span id="rvTotalServices_ReportViewer"><div id="rvTotalServices" onclick="if ($get(&#39;rvTotalServices_ctl04&#39;) != null &amp;&amp; $get(&#39;rvTotalServices_ctl04&#39;).control != null) $get(&#39;rvTotalServices_ctl04&#39;).control.HideActiveDropDown();" onactivate="if ($get(&#39;rvTotalServices_ctl04&#39;) != null &amp;&amp; $get(&#39;rvTotalServices_ctl04&#39;).control != null) $get(&#39;rvTotalServices_ctl04&#39;).control.HideActiveDropDown();" style="height:400px;width:1091px;margin-right: 542px"><div id="rvTotalServices_HttpHandlerMissingErrorMessage" style="border-color:Red;border-width:2px;border-style:Solid;padding:10px;display:none;overflow:auto;font-size:.85em;"><h2>
			Report Viewer Configuration Error</h2><p>The Report Viewer Web Control HTTP Handler has not been registered in the application&#39;s web.config file.  Add &lt;add verb=&quot;*&quot; path=&quot;Reserved.ReportViewerWebControl.axd&quot; type = &quot;Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&quot; /&gt; to the system.web/httpHandlers section of the web.config file, or add &lt;add name=&quot;ReportViewerWebControlHandler&quot; preCondition=&quot;integratedMode&quot; verb=&quot;*&quot; path=&quot;Reserved.ReportViewerWebControl.axd&quot; type=&quot;Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91&quot; /&gt; to the system.webServer/handlers section for Internet Information Services 7 or later.</p></div><span id="rvTotalServices_ctl03"><input type="hidden" name="rvTotalServices$ctl03$ctl00" id="rvTotalServices_ctl03_ctl00" /><input type="hidden" name="rvTotalServices$ctl03$ctl01" id="rvTotalServices_ctl03_ctl01" /></span><input type="hidden" name="rvTotalServices$ctl10" id="rvTotalServices_ctl10" /><input type="hidden" name="rvTotalServices$ctl11" id="rvTotalServices_ctl11" /><div id="rvTotalServices_AsyncWait" style="background-color:White;opacity:0.7;position:absolute;display:none;filter:alpha(opacity=70);"></div><div id="rvTotalServices_AsyncWait_Wait" style="cursor:wait;background-color:#ECE9D8;padding:15px;border:1px solid black;display:none;position:absolute;"><table height="100%"><tr><td width="32px" height="32px"><img src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.SpinningWheel.gif" alt="Loading..." style="height:32px;width:32px;" /></td><td style="vertical-align:middle;text-align:center;"><span style="font-family:Verdana;font-size:14pt;">Loading...</span><div style="margin-top:3px;"><a href="javascript:$get(&#39;rvTotalServices_AsyncWait&#39;).control._cancelCurrentPostback();" style="font-family:Verdana;font-size:8pt;color:#3366CC;">Cancel</a></div></td></tr></table></div><input type="hidden" name="rvTotalServices$AsyncWait$HiddenCancelField" id="rvTotalServices_AsyncWait_HiddenCancelField" value="False" /><table cellpadding="0" cellspacing="0" id="rvTotalServices_fixedTable" style="table-layout:fixed;width:100%;height:100%;"><tr style="background-color:#ECE9D8;"><td style="display:none;width:25%;"></td><td style="display:none;width:6px;"></td><td style="width:100%;"></td></tr><tr id="ParametersRowrvTotalServices" style="display:none;"><td colspan="3"></td></tr><tr style="height:6px;font-size:2pt;display:none;"><td colspan="3" style="padding:0px;margin:0px;text-align:center;background-color:#ECE9D8;"><div id="rvTotalServices_ToggleParam"><input type="image" name="rvTotalServices$ToggleParam$img" id="rvTotalServices_ToggleParam_img" title="Show / Hide Parameters" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.SplitterHorizCollapse.png" alt="Show / Hide Parameters" align="middle" onclick="void(0);" style="cursor:pointer;" /><input type="hidden" name="rvTotalServices$ToggleParam$store" id="rvTotalServices_ToggleParam_store" /><input type="hidden" name="rvTotalServices$ToggleParam$collapse" id="rvTotalServices_ToggleParam_collapse" value="false" /></div></td></tr><tr><td colspan="3"><div id="rvTotalServices_ctl05" style="font-family:Verdana;font-size:8pt;border-bottom:1px #CCCCCC Solid;background-color:#ECE9D8;background-image:url(/Reserved.ReportViewerWebControl.axd?OpType=BackImage&amp;Version=11.0.3452.0&amp;Color=%23ECE9D8&amp;Name=Microsoft.Reporting.WebForms.Icons.toolbar_bk.png);"><div style="padding-left:6px;"><div class=" " style="display:inline-block;font-family:Verdana;font-size:8pt;vertical-align:top;"><table cellpadding="0" cellspacing="0" style="display:inline;"><tr><td height="28px"><div id="rvTotalServices_ctl05_ctl00_First"><div id="rvTotalServices_ctl05_ctl00_First_ctl00" style="display:none;border:1px transparent Solid;"><table title="First Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$First$ctl00$ctl00" id="rvTotalServices_ctl05_ctl00_First_ctl00_ctl00" title="First Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.FirstPage.gif" alt="First Page" style="border-style:None;height:16px;width:16px;" /><input type="image" name="rvTotalServices$ctl05$ctl00$First$ctl00$ctl01" id="rvTotalServices_ctl05_ctl00_First_ctl00_ctl01" title="First Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.LastPage.gif" alt="First Page" style="border-style:None;height:16px;width:16px;display:none;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl00_First_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="First Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$First$ctl01$ctl00" disabled="disabled" id="rvTotalServices_ctl05_ctl00_First_ctl01_ctl00" title="First Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.FirstPageDisabled.gif" alt="First Page" style="border-style:None;height:16px;width:16px;cursor:default;" /><input type="image" name="rvTotalServices$ctl05$ctl00$First$ctl01$ctl01" disabled="disabled" id="rvTotalServices_ctl05_ctl00_First_ctl01_ctl01" title="First Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.LastPageDisabled.gif" alt="First Page" style="border-style:None;height:16px;width:16px;display:none;cursor:default;" /></td></tr></table></div></div></td><td width="4px"></td><td height="28px"><div id="rvTotalServices_ctl05_ctl00_Previous"><div id="rvTotalServices_ctl05_ctl00_Previous_ctl00" style="display:none;border:1px transparent Solid;"><table title="Previous Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Previous$ctl00$ctl00" id="rvTotalServices_ctl05_ctl00_Previous_ctl00_ctl00" title="Previous Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.PrevPage.gif" alt="Previous Page" style="border-style:None;height:16px;width:16px;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Previous$ctl00$ctl01" id="rvTotalServices_ctl05_ctl00_Previous_ctl00_ctl01" title="Previous Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.NextPage.gif" alt="Previous Page" style="border-style:None;height:16px;width:16px;display:none;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl00_Previous_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="Previous Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Previous$ctl01$ctl00" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Previous_ctl01_ctl00" title="Previous Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.PrevPageDisabled.gif" alt="Previous Page" style="border-style:None;height:16px;width:16px;cursor:default;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Previous$ctl01$ctl01" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Previous_ctl01_ctl01" title="Previous Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.NextPageDisabled.gif" alt="Previous Page" style="border-style:None;height:16px;width:16px;display:none;cursor:default;" /></td></tr></table></div></div></td><td width="4px"></td><td height="28px"><input name="rvTotalServices$ctl05$ctl00$CurrentPage" type="text" value="1" maxlength="8" size="3" id="rvTotalServices_ctl05_ctl00_CurrentPage" disabled="disabled" title="Current Page" class="aspNetDisabled" style="font-family:Verdana;font-size:8pt;" /></td><td width="4px"></td><td height="28px"><span style="font-family:Verdana;font-size:8pt;">of</span></td><td width="4px"></td><td height="28px"><span id="rvTotalServices_ctl05_ctl00_TotalPages" style="font-family:Verdana;font-size:8pt;white-space:nowrap;">1</span></td><td width="4px"></td><td height="28px"><div id="rvTotalServices_ctl05_ctl00_Next"><div id="rvTotalServices_ctl05_ctl00_Next_ctl00" style="display:none;border:1px transparent Solid;"><table title="Next Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Next$ctl00$ctl00" id="rvTotalServices_ctl05_ctl00_Next_ctl00_ctl00" title="Next Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.NextPage.gif" alt="Next Page" style="border-style:None;height:16px;width:16px;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Next$ctl00$ctl01" id="rvTotalServices_ctl05_ctl00_Next_ctl00_ctl01" title="Next Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.PrevPage.gif" alt="Next Page" style="border-style:None;height:16px;width:16px;display:none;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl00_Next_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="Next Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Next$ctl01$ctl00" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Next_ctl01_ctl00" title="Next Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.NextPageDisabled.gif" alt="Next Page" style="border-style:None;height:16px;width:16px;cursor:default;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Next$ctl01$ctl01" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Next_ctl01_ctl01" title="Next Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.PrevPageDisabled.gif" alt="Next Page" style="border-style:None;height:16px;width:16px;display:none;cursor:default;" /></td></tr></table></div></div></td><td width="4px"></td><td height="28px"><div id="rvTotalServices_ctl05_ctl00_Last"><div id="rvTotalServices_ctl05_ctl00_Last_ctl00" style="display:none;border:1px transparent Solid;"><table title="Last Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Last$ctl00$ctl00" id="rvTotalServices_ctl05_ctl00_Last_ctl00_ctl00" title="Last Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.LastPage.gif" alt="Last Page" style="border-style:None;height:16px;width:16px;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Last$ctl00$ctl01" id="rvTotalServices_ctl05_ctl00_Last_ctl00_ctl01" title="Last Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.FirstPage.gif" alt="Last Page" style="border-style:None;height:16px;width:16px;display:none;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl00_Last_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="Last Page"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl00$Last$ctl01$ctl00" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Last_ctl01_ctl00" title="Last Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.LastPageDisabled.gif" alt="Last Page" style="border-style:None;height:16px;width:16px;cursor:default;" /><input type="image" name="rvTotalServices$ctl05$ctl00$Last$ctl01$ctl01" disabled="disabled" id="rvTotalServices_ctl05_ctl00_Last_ctl01_ctl01" title="Last Page" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.FirstPageDisabled.gif" alt="Last Page" style="border-style:None;height:16px;width:16px;display:none;cursor:default;" /></td></tr></table></div></div></td></tr></table></div><table cellpadding="0" cellspacing="0" ToolbarSpacer="true" style="display:inline-block;width:20px;"><tr><td></td></tr></table><div class=" " style="display:inline-block;font-family:Verdana;font-size:8pt;vertical-align:top;"><table cellpadding="0" cellspacing="0" style="display:inline;"><tr><td height="28px"><div id="rvTotalServices_ctl05_ctl01_ctl00"><div id="rvTotalServices_ctl05_ctl01_ctl00_ctl00" style="display:none;border:1px transparent Solid;"><table title="Go back to the parent report"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl01$ctl00$ctl00$ctl00" id="rvTotalServices_ctl05_ctl01_ctl00_ctl00_ctl00" title="Go back to the parent report" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.BackEnabled.gif" alt="Go back to the parent report" style="border-style:None;height:16px;width:16px;" /><input type="image" name="rvTotalServices$ctl05$ctl01$ctl00$ctl00$ctl01" id="rvTotalServices_ctl05_ctl01_ctl00_ctl00_ctl01" title="Go back to the parent report" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.BackRTLEnabled.gif" alt="Go back to the parent report" style="border-style:None;height:16px;width:16px;display:none;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl01_ctl00_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="Go back to the parent report"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl01$ctl00$ctl01$ctl00" disabled="disabled" id="rvTotalServices_ctl05_ctl01_ctl00_ctl01_ctl00" title="Go back to the parent report" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.BackDisabled.gif" alt="Go back to the parent report" style="border-style:None;height:16px;width:16px;cursor:default;" /><input type="image" name="rvTotalServices$ctl05$ctl01$ctl00$ctl01$ctl01" disabled="disabled" id="rvTotalServices_ctl05_ctl01_ctl00_ctl01_ctl01" title="Go back to the parent report" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.BackRTLDisabled.gif" alt="Go back to the parent report" style="border-style:None;height:16px;width:16px;display:none;cursor:default;" /></td></tr></table></div></div></td></tr></table></div><table cellpadding="0" cellspacing="0" ToolbarSpacer="true" style="display:inline-block;width:20px;"><tr><td></td></tr></table><div class=" " style="display:inline-block;font-family:Verdana;font-size:8pt;vertical-align:top;"><table cellpadding="0" cellspacing="0" style="display:inline;"><tr><td height="28px"><input name="rvTotalServices$ctl05$ctl03$ctl00" type="text" maxlength="255" size="10" id="rvTotalServices_ctl05_ctl03_ctl00" disabled="disabled" title="Find Text in Report" class="aspNetDisabled" style="font-family:Verdana;font-size:8pt;" /></td><td width="4px"></td><td height="28px"><a id="rvTotalServices_ctl05_ctl03_ctl01" title="Find" href="#" style="font-family:Verdana;font-size:8pt;color:Gray;text-decoration:none;white-space:nowrap;">Find</a></td><td width="4px"></td><td height="28px"><span style="font-family:Verdana;font-size:8pt;">|</span></td><td width="4px"></td><td height="28px"><a id="rvTotalServices_ctl05_ctl03_ctl03" title="Find Next" href="#" style="font-family:Verdana;font-size:8pt;color:Gray;text-decoration:none;white-space:nowrap;">Next</a></td></tr></table></div><table cellpadding="0" cellspacing="0" ToolbarSpacer="true" style="display:inline-block;width:20px;"><tr><td></td></tr></table><div class=" " style="display:inline-block;font-family:Verdana;font-size:8pt;vertical-align:top;"><table cellpadding="0" cellspacing="0" style="display:inline;"><tr><td height="28px"><div id="rvTotalServices_ctl05_ctl04_ctl00" style="font-family:Verdana;font-size:8pt;border:1px transparent Solid;"><table id="rvTotalServices_ctl05_ctl04_ctl00_Button" title="Export drop down menu"><tr><td><a id="rvTotalServices_ctl05_ctl04_ctl00_ButtonLink" title="Export drop down menu" alt="Export drop down menu" href="javascript:void(0)" style="text-decoration:none;"><img id="rvTotalServices_ctl05_ctl04_ctl00_ButtonImg" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.ExportDisabled.gif" alt="Export drop down menu" style="border-style:None;height:16px;width:16px;" /><span style="width:5px;text-decoration:none;"> </span><img id="rvTotalServices_ctl05_ctl04_ctl00_ButtonImgDown" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.ArrowDownDisabled.gif" alt="Export drop down menu" style="border-style:None;height:6px;width:7px;margin-bottom:5px;" /></a></td></tr></table></div><div id="rvTotalServices_ctl05_ctl04_ctl00_Menu" style="background-color:#ECE9D8;border:1px #336699 Solid;display:none;position:absolute;padding:1px;z-index:1;"><div style="border:1px transparent Solid;"><a title="Excel" alt="Excel" onclick="$find(&#39;rvTotalServices&#39;).exportReport(&#39;EXCELOPENXML&#39;);" href="javascript:void(0)" style="color:#3366CC;font-family:Verdana;font-size:8pt;padding:3px 8px 3px 8px;display:block;white-space:nowrap;text-decoration:none;">Excel</a></div><div style="border:1px transparent Solid;"><a title="PDF" alt="PDF" onclick="$find(&#39;rvTotalServices&#39;).exportReport(&#39;PDF&#39;);" href="javascript:void(0)" style="color:#3366CC;font-family:Verdana;font-size:8pt;padding:3px 8px 3px 8px;display:block;white-space:nowrap;text-decoration:none;">PDF</a></div><div style="border:1px transparent Solid;"><a title="Word" alt="Word" onclick="$find(&#39;rvTotalServices&#39;).exportReport(&#39;WORDOPENXML&#39;);" href="javascript:void(0)" style="color:#3366CC;font-family:Verdana;font-size:8pt;padding:3px 8px 3px 8px;display:block;white-space:nowrap;text-decoration:none;">Word</a></div></div></td></tr></table></div><table cellpadding="0" cellspacing="0" ToolbarSpacer="true" style="display:inline-block;width:6px;"><tr><td></td></tr></table><div class=" " style="display:inline-block;font-family:Verdana;font-size:8pt;vertical-align:top;"><table cellpadding="0" cellspacing="0" style="display:inline;"><tr><td height="28px"><div id="rvTotalServices_ctl05_ctl05_ctl00"><div id="rvTotalServices_ctl05_ctl05_ctl00_ctl00" style="display:none;border:1px transparent Solid;"><table title="Refresh"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl05$ctl00$ctl00$ctl00" title="Refresh" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.Refresh.gif" alt="Refresh" style="border-style:None;height:16px;width:16px;" /></td></tr></table></div><div id="rvTotalServices_ctl05_ctl05_ctl00_ctl01" class="aspNetDisabled" disabled="disabled" style="border:1px transparent Solid;"><table title="Refresh"><tr><td><input type="image" name="rvTotalServices$ctl05$ctl05$ctl00$ctl01$ctl00" disabled="disabled" title="Refresh" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.RefreshDisabled.gif" alt="Refresh" style="border-style:None;height:16px;width:16px;cursor:default;" /></td></tr></table></div></div></td></tr></table></div></div></div></td></tr><tr><td style="vertical-align:top;width:25%;height:100%;display:none;"><div style="width:100%;height:100%;"><span id="rvTotalServices_DocMap"><div id="rvTotalServices_ctl08" style="display:none;"><input type="hidden" name="rvTotalServices$ctl08$ClientClickedId" id="rvTotalServices_ctl08_ClientClickedId" /></div></span></div></td><td style="display:none;width:4px;padding:0px;margin:0px;height:100%;vertical-align:middle;background-color:#ECE9D8;"><div id="rvTotalServices_ctl07"><input type="image" name="rvTotalServices$ctl07$img" id="rvTotalServices_ctl07_img" title="Show / Hide Document Map" src="/Reserved.ReportViewerWebControl.axd?OpType=Resource&amp;Version=11.0.3452.0&amp;Name=Microsoft.Reporting.WebForms.Icons.SplitterVertCollapse.png" alt="Show / Hide Document Map" align="top" onclick="void(0);" style="cursor:pointer;" /><input type="hidden" name="rvTotalServices$ctl07$store" id="rvTotalServices_ctl07_store" /><input type="hidden" name="rvTotalServices$ctl07$collapse" id="rvTotalServices_ctl07_collapse" value="false" /></div></td><td style="height:100%;vertical-align:top;"><div id="rvTotalServices_ctl09" style="height:100%;width:100%;overflow:auto;position:relative;"><div id="VisibleReportContentrvTotalServices_ctl09" style="height:100%;display:none;"></div><div id="rvTotalServices_ctl09_ReportArea"><div NewContentType="Microsoft.Reporting.WebFormsClient.ReportAreaContent.ReportPage" ForNonReportContentArea="false" id="rvTotalServices_ctl09_VisibilityState" style="visibility:none;"><input type="hidden" name="rvTotalServices$ctl09$VisibilityState$ctl00" value="ReportPage" /></div><input type="hidden" name="rvTotalServices$ctl09$ScrollPosition" id="rvTotalServices_ctl09_ScrollPosition" /><span id="rvTotalServices_ctl09_Reserved_AsyncLoadTarget"></span><div id="rvTotalServices_ctl09_ReportControl" style="display:none;"><span></span><input type="hidden" name="rvTotalServices$ctl09$ReportControl$ctl02" id="rvTotalServices_ctl09_ReportControl_ctl02" /><input type="hidden" name="rvTotalServices$ctl09$ReportControl$ctl03" id="rvTotalServices_ctl09_ReportControl_ctl03" /><input type="hidden" name="rvTotalServices$ctl09$ReportControl$ctl04" id="rvTotalServices_ctl09_ReportControl_ctl04" value="100" /><div style="display:none;"><DIV dir="LTR" style="WIDTH:100%;direction:ltr" ID="P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv"><TABLE CELLSPACING="0" CELLPADDING="0"><TR><TD ID="P881dea8b17de4f3cb48bf51003c1a514_1_oReportCell"><TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0" class="Ade13362f4358414aa3305a8100d10dea58xB"><TR><TD style="vertical-align:top"><TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0" LANG="en-US" class="P881dea8b17de4f3cb48bf51003c1a514_1_r10""><TR VALIGN="top"><TD style="HEIGHT:25.40mm;WIDTH:181.24mm;min-width: 181.24mm;"><TABLE CELLSPACING="0" CELLPADDING="0" COLS="5" BORDER="0" style="border-collapse:collapse;" class="Ade13362f4358414aa3305a8100d10dea56"><TR HEIGHT="0"><TD style="WIDTH:33.07mm;min-width: 33.07mm"></TD><TD style="WIDTH:81.23mm;min-width: 81.23mm"></TD><TD style="WIDTH:25.40mm;min-width: 25.40mm"></TD><TD style="WIDTH:16.14mm;min-width: 16.14mm"></TD><TD style="WIDTH:25.40mm;min-width: 25.40mm"></TD></TR><TR VALIGN="top"><TD style="HEIGHT:6.35mm;" class="Ade13362f4358414aa3305a8100d10dea11c"><DIV class="Ade13362f4358414aa3305a8100d10dea11">Expense Type Id</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea15c"><DIV class="Ade13362f4358414aa3305a8100d10dea15">Expense Type</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea19c"><DIV class="Ade13362f4358414aa3305a8100d10dea19">Status</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea23c"><DIV class="Ade13362f4358414aa3305a8100d10dea23">Quantity</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea27c"><DIV class="Ade13362f4358414aa3305a8100d10dea27">Total Cost</DIV></TD></TR><TR VALIGN="top"><TD style="HEIGHT:6.35mm;" class="Ade13362f4358414aa3305a8100d10dea32cr"><DIV class="Ade13362f4358414aa3305a8100d10dea32">12200</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea36cl"><DIV class="Ade13362f4358414aa3305a8100d10dea36">Assay, PCR, GLP-Validated, per Sample</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea40cl"><DIV class="Ade13362f4358414aa3305a8100d10dea40">New</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea44cr"><DIV class="Ade13362f4358414aa3305a8100d10dea44">15</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea48cl P881dea8b17de4f3cb48bf51003c1a514_1_r14">&nbsp;</TD></TR><TR VALIGN="top"><TD style="HEIGHT:6.35mm;" class="Ade13362f4358414aa3305a8100d10dea32cr"><DIV class="Ade13362f4358414aa3305a8100d10dea32">12200</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea36cl"><DIV class="Ade13362f4358414aa3305a8100d10dea36">Assay, PCR, GLP-Validated, per Sample</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea40cl"><DIV class="Ade13362f4358414aa3305a8100d10dea40">Error</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea44cr"><DIV class="Ade13362f4358414aa3305a8100d10dea44">13</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea48cl P881dea8b17de4f3cb48bf51003c1a514_1_r14">&nbsp;</TD></TR><TR VALIGN="top"><TD style="HEIGHT:6.35mm;" class="Ade13362f4358414aa3305a8100d10dea32cr"><DIV class="Ade13362f4358414aa3305a8100d10dea32">12201</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea36cl"><DIV class="Ade13362f4358414aa3305a8100d10dea36">PCR Core Lab Service, Miscellaneous</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea40cl"><DIV class="Ade13362f4358414aa3305a8100d10dea40">New</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea44cr"><DIV class="Ade13362f4358414aa3305a8100d10dea44">122</DIV></TD><TD class="Ade13362f4358414aa3305a8100d10dea48cl P881dea8b17de4f3cb48bf51003c1a514_1_r14">&nbsp;</TD></TR></TABLE></TD><TD style="WIDTH:81.76mm;min-width: 81.76mm;"></TD></TR><TR><TD COLSPAN="2"></TD></TR></TABLE></TD></TR></TABLE></TD></TR></TABLE></DIV></div></div><div id="rvTotalServices_ctl09_NonReportContent" style="height:100%;width:100%;"></div></div></div></td></tr></table></div></span><script type="text/javascript">
//<![CDATA[
Sys.Application.add_init(function() {
if (typeof Microsoft == 'undefined' ||
    typeof Microsoft.Reporting == 'undefined' ||
    typeof Microsoft.Reporting.WebFormsClient == 'undefined' ||
    typeof Microsoft.Reporting.WebFormsClient.ReportViewer == 'undefined')
    Sys.UI.DomElement.setVisible($get('rvTotalServices_HttpHandlerMissingErrorMessage'), true);$create(Microsoft.Reporting.WebFormsClient.ReportViewer, {"_internalViewerId":"rvTotalServices_ctl03","id":"rvTotalServices"}, null, null);
});
Sys.WebForms.PageRequestManager.getInstance()._registerDisposeScript("rvTotalServices_ReportViewer", "$find(\u0027rvTotalServices_SessionKeepAlive\u0027).dispose();");
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._InternalReportViewer, {"ActionParamId":"rvTotalServices_ctl03_ctl01","ActionTypeId":"rvTotalServices_ctl03_ctl00","BaseHeight":"400px","BaseWidth":"1091px","BrowserModeId":"rvTotalServices_ctl11","DirectionCacheId":"rvTotalServices_ctl10","DocMapAreaId":"rvTotalServices_ctl08","DocMapHeaderOverflowDivId":"rvTotalServices_ctl08DocMapHeaderOverflowDiv","DocMapSplitterId":"rvTotalServices_ctl07","ExportUrlBase":"/Reserved.ReportViewerWebControl.axd?Culture=1033\u0026CultureOverrides=True\u0026UICulture=1033\u0026UICultureOverrides=True\u0026ReportStack=1\u0026ControlID=881dea8b17de4f3cb48bf51003c1a514\u0026Mode=true\u0026OpType=Export\u0026FileName=rTotalServices\u0026ContentDisposition=OnlyHtmlInline\u0026Format=","FixedTableId":"rvTotalServices_fixedTable","HasSizingRow":true,"PostBackToClientScript":function(){__doPostBack('rvTotalServices$ctl03','');},"PrintInfo":{"CabUrl":"/Reserved.ReportViewerWebControl.axd?Culture=1033\u0026CultureOverrides=True\u0026UICulture=1033\u0026UICultureOverrides=True\u0026ReportStack=1\u0026ControlID=881dea8b17de4f3cb48bf51003c1a514\u0026Mode=true\u0026OpType=PrintCab\u0026Arch=X86#Version=2011,110,2100,60","CabClsid":"5554DCB0-700B-498D-9B58-4E40E5814405","MarginLeft":25.4,"MarginRight":25.4,"MarginTop":25.4,"MarginBottom":25.4,"PageHeight":279.4,"PageWidth":215.9,"Culture":1033,"UICulture":1033,"UseSingleRequest":true,"PrintRequestPath":"/Reserved.ReportViewerWebControl.axd","PrintRequestQuery":"Culture=1033\u0026CultureOverrides=True\u0026UICulture=1033\u0026UICultureOverrides=True\u0026ReportStack=1\u0026ControlID=881dea8b17de4f3cb48bf51003c1a514\u0026Mode=true\u0026OpType=PrintRequest","ReportDisplayName":"rTotalServices"},"PromptAreaRowId":"ParametersRowrvTotalServices","PromptSplitterId":"rvTotalServices_ToggleParam","ReportAreaId":"rvTotalServices_ctl09","ReportViewerId":"rvTotalServices","UnableToLoadPrintMessage":"Printing is not available. Verify that ActiveX is enabled, or try using Internet Explorer for the desktop."}, null, null, $get("rvTotalServices_ctl03"));$create(Microsoft.Reporting.WebFormsClient._SessionKeepAlive, {"KeepAliveBody":null,"KeepAliveIntervalSeconds":2340,"KeepAliveUrl":"/Reserved.ReportViewerWebControl.axd?OpType=SessionKeepAlive\u0026ControlID=881dea8b17de4f3cb48bf51003c1a514\u0026Mode=true","id":"rvTotalServices_SessionKeepAlive"}, null, null);
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._AsyncWaitControl, {"ClientCanceledId":"rvTotalServices_AsyncWait_HiddenCancelField","DisplayDelay":1000,"FixedTableId":"rvTotalServices_fixedTable","ReportViewerId":"rvTotalServices","SkipTimer":true,"TriggerIds":["rvTotalServices"],"WaitControlId":"rvTotalServices_AsyncWait_Wait"}, null, null, $get("rvTotalServices_AsyncWait"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._Splitter, {"HoverColor":"#DDEEF7","ImageCollapse":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterHorizCollapse.png","ImageCollapseHover":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterHorizCollapseHover.png","ImageExpand":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterHorizExpand.png","ImageExpandHover":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterHorizExpandHover.png","ImageId":"rvTotalServices_ToggleParam_img","IsCollapsable":true,"NormalColor":"#ECE9D8","Resizable":false,"StoreCollapseField":"rvTotalServices_ToggleParam_collapse","StorePositionField":"rvTotalServices_ToggleParam_store","Vertical":false}, null, null, $get("rvTotalServices_ToggleParam"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._Toolbar, {"AtomDataFeedButton":$get("rvTotalServices_ctl05_ctl07_ctl00"),"CanFindNext":false,"CurrentPage":1,"CurrentPageTextBox":$get("rvTotalServices_ctl05_ctl00_CurrentPage"),"DrillBackButton":$get("rvTotalServices_ctl05_ctl01_ctl00"),"ExportButton":$get("rvTotalServices_ctl05_ctl04_ctl00"),"FindButton":$get("rvTotalServices_ctl05_ctl03_ctl01"),"FindNextButton":$get("rvTotalServices_ctl05_ctl03_ctl03"),"FindTextBox":$get("rvTotalServices_ctl05_ctl03_ctl00"),"FirstPageNavButton":$get("rvTotalServices_ctl05_ctl00_First"),"InvalidPageNumberMessage":"Enter a valid page number","IsDrillthroughReport":false,"IsEstimatePageCount":false,"LastPageNavButton":$get("rvTotalServices_ctl05_ctl00_Last"),"NextPageNavButton":$get("rvTotalServices_ctl05_ctl00_Next"),"OnCurrentPageClick":function(){__doPostBack('rvTotalServices$ctl05$ctl00$CurrentPage','');},"PrevPageNavButton":$get("rvTotalServices_ctl05_ctl00_Previous"),"PrintButton":$get("rvTotalServices_ctl05_ctl06_ctl00"),"RefreshButton":$get("rvTotalServices_ctl05_ctl05_ctl00"),"TotalPages":1,"TotalPagesLabel":$get("rvTotalServices_ctl05_ctl00_TotalPages"),"ZoomDropDown":$get("rvTotalServices_ctl05_ctl02_ctl00")}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl00_First_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl00_First_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl00_First"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_First_ctl00_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$First$ctl00','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_First_ctl00_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_First_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_First_ctl01_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$First$ctl01','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_First_ctl01_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_First_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl00_Previous_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl00_Previous_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl00_Previous"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Previous_ctl00_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Previous$ctl00','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Previous_ctl00_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Previous_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Previous_ctl01_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Previous$ctl01','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Previous_ctl01_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Previous_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl00_Next_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl00_Next_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl00_Next"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Next_ctl00_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Next$ctl00','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Next_ctl00_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Next_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Next_ctl01_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Next$ctl01','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Next_ctl01_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Next_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl00_Last_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl00_Last_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl00_Last"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Last_ctl00_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Last$ctl00','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Last_ctl00_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Last_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl00_Last_ctl01_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl00$Last$ctl01','');},"RTLImageID":"rvTotalServices_ctl05_ctl00_Last_ctl01_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl00_Last_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl01_ctl00_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl01_ctl00_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl01_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl01_ctl00_ctl00_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl01$ctl00$ctl00','');},"RTLImageID":"rvTotalServices_ctl05_ctl01_ctl00_ctl00_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl01_ctl00_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"IsRtlVisible":false,"LTRImageID":"rvTotalServices_ctl05_ctl01_ctl00_ctl01_ctl00","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl01$ctl00$ctl01','');},"RTLImageID":"rvTotalServices_ctl05_ctl01_ctl00_ctl01_ctl01"}, null, {"ReportViewer":"rvTotalServices"}, $get("rvTotalServices_ctl05_ctl01_ctl00_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._TextButton, {"ActiveHoverLinkColor":"#FF3300","ActiveLinkColor":"#3366CC","DisabledLinkColor":"Gray","IsActive":false,"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl03$ctl01','');}}, null, null, $get("rvTotalServices_ctl05_ctl03_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._TextButton, {"ActiveHoverLinkColor":"#FF3300","ActiveLinkColor":"#3366CC","DisabledLinkColor":"Gray","IsActive":false,"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl03$ctl03','');}}, null, null, $get("rvTotalServices_ctl05_ctl03_ctl03"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._DropDownMenu, {"ArrowImages":"{\"DisabledUrl\":\"/Reserved.ReportViewerWebControl.axd?OpType=Resource\\u0026Version=11.0.3452.0\\u0026Name=Microsoft.Reporting.WebForms.Icons.ArrowDownDisabled.gif\",\"EnabledUrl\":\"/Reserved.ReportViewerWebControl.axd?OpType=Resource\\u0026Version=11.0.3452.0\\u0026Name=Microsoft.Reporting.WebForms.Icons.ArrowDown.gif\"}","ButtonId":"rvTotalServices_ctl05_ctl04_ctl00_Button","ButtonImages":"{\"DisabledUrl\":\"/Reserved.ReportViewerWebControl.axd?OpType=Resource\\u0026Version=11.0.3452.0\\u0026Name=Microsoft.Reporting.WebForms.Icons.ExportDisabled.gif\",\"EnabledUrl\":\"/Reserved.ReportViewerWebControl.axd?OpType=Resource\\u0026Version=11.0.3452.0\\u0026Name=Microsoft.Reporting.WebForms.Icons.Export.gif\"}","Enabled":false,"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"MenuId":"rvTotalServices_ctl05_ctl04_ctl00_Menu","NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"}}, null, null, $get("rvTotalServices_ctl05_ctl04_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ScriptSwitchImage, {"Image1":$get("rvTotalServices_ctl05_ctl05_ctl00_ctl00"),"Image2":$get("rvTotalServices_ctl05_ctl05_ctl00_ctl01")}, null, null, $get("rvTotalServices_ctl05_ctl05_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl05$ctl00$ctl00','');}}, null, null, $get("rvTotalServices_ctl05_ctl05_ctl00_ctl00"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._HoverImage, {"HoverStyles":{"CssClass":null,"Color":"#DDEEF7","Border":"1px #336699 Solid"},"NormalStyles":{"CssClass":null,"Color":"transparent","Border":"1px transparent Solid"},"OnClickScript":function(){__doPostBack('rvTotalServices$ctl05$ctl05$ctl00$ctl01','');}}, null, null, $get("rvTotalServices_ctl05_ctl05_ctl00_ctl01"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._Splitter, {"HoverColor":"#DDEEF7","ImageCollapse":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterVertCollapse.png","ImageCollapseHover":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterVertCollapseHover.png","ImageExpand":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterVertExpand.png","ImageExpandHover":"/Reserved.ReportViewerWebControl.axd?OpType=Resource\u0026Version=11.0.3452.0\u0026Name=Microsoft.Reporting.WebForms.Icons.SplitterVertExpandHover.png","ImageId":"rvTotalServices_ctl07_img","IsCollapsable":true,"NormalColor":"#ECE9D8","Resizable":true,"StoreCollapseField":"rvTotalServices_ctl07_collapse","StorePositionField":"rvTotalServices_ctl07_store","Vertical":true}, null, null, $get("rvTotalServices_ctl07"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ReportArea, {"NonReportContentId":"rvTotalServices_ctl09_NonReportContent","ReportAreaVisibilityStateId":"rvTotalServices_ctl09_VisibilityState","ReportControlId":"rvTotalServices_ctl09_ReportControl","ScrollPositionId":"rvTotalServices_ctl09_ScrollPosition","VisibleReportContentContainerId":"VisibleReportContentrvTotalServices_ctl09"}, null, null, $get("rvTotalServices_ctl09"));
});
Sys.Application.add_init(function() {$create(Microsoft.Reporting.WebFormsClient._ReportPage, {"ActionParamId":"rvTotalServices_ctl09_ReportControl_ctl03","ActionTypeId":"rvTotalServices_ctl09_ReportControl_ctl02","HiddenZoomLevelId":"rvTotalServices_ctl09_ReportControl_ctl04","InteractivityMode":"AlwaysAsynchronous","PrefixId":"P881dea8b17de4f3cb48bf51003c1a514_1_","ReportCellId":"P881dea8b17de4f3cb48bf51003c1a514_1_oReportCell","ReportDivId":"P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv","ReportPageStyles":"background-color:Transparent;border:1pt none Black;","ReportStyles":"#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea58xB{border:1pt none Black;background-color:Transparent;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea56{border:1pt none Black;background-color:Transparent;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea11c{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 30.96mm;WIDTH:33.07mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea11{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea15c{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 79.11mm;WIDTH:81.23mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea15{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea19c{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 23.28mm;WIDTH:25.40mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea19{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea23c{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 14.02mm;WIDTH:16.14mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea23{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea27c{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 23.28mm;WIDTH:25.40mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea27{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea32cr{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:right;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 30.96mm;WIDTH:33.07mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea32{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:right;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea36cl{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 79.11mm;WIDTH:81.23mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea36{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea40cl{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 23.28mm;WIDTH:25.40mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea40{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:left;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea44cr{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:right;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 14.02mm;WIDTH:16.14mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea44{word-wrap:break-word;white-space:pre-wrap;font-style:normal;font-family:Arial;font-size:10pt;font-weight:400;text-decoration:none;unicode-bidi:normal;color:Black;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;vertical-align:top;text-align:right;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .Ade13362f4358414aa3305a8100d10dea48cl{padding-left:2pt;padding-top:2pt;padding-right:2pt;padding-bottom:2pt;border:1pt solid #d3d3d3;background-color:Transparent;vertical-align:top;text-align:left;direction:ltr;layout-flow:horizontal;writing-mode:lr-tb;min-width: 23.28mm;WIDTH:25.40mm;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r1{HEIGHT:100%;WIDTH:100%}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r2{HEIGHT:100%;WIDTH:100%;overflow:hidden}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r3{HEIGHT:100%}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r4{border-style:none}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r5{border-left-style:none}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r6{border-right-style:none}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r7{border-top-style:none}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r8{border-bottom-style:none}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r10{border-collapse:collapse}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r9{border-collapse:collapse;table-layout:fixed}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r11{WIDTH:100%;overflow-x:hidden}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r12{position:absolute;display:none;background-color:white;border:1px solid black;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r13{text-decoration:none;color:black;cursor:pointer;}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r14{font-size:1px}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r15{direction:RTL;unicode-bidi:embed}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r16{margin-top:0pt;margin-bottom:0pt}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r17{HEIGHT:100%;WIDTH:100%;display:inline-table}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv .P881dea8b17de4f3cb48bf51003c1a514_1_r18{HEIGHT:100%;display:inline-table}#P881dea8b17de4f3cb48bf51003c1a514_1_oReportDiv  * { -moz-box-sizing: border-box; box-sizing: border-box }","ScrollableContainerId":"rvTotalServices_ctl09","SearchHitPrefix":"P881dea8b17de4f3cb48bf51003c1a514_1_oHit","StyleElementId":"rvTotalServices_ctl09_ReportControl_styles","ToolBarUpdate":{'CurrentPage':1,'TotalPages':1,'IsEstimatePageCount':false,'TotalPagesString':'1','SearchText':'','CanFindNext':false},"TriggerAsyncInteractivity":function(){__doPostBack('rvTotalServices$ctl09$ReportControl','');},"TriggerSyncInteractivity":function(){__doPostBack('rvTotalServices$ctl09$ReportControl$ctl00','');}}, null, null, $get("rvTotalServices_ctl09_ReportControl"));
});
//]]></script></form></body></html>

What am I missing?

Forms Authentication cookies problem

$
0
0

Hello all,

I have recently setup SSRS with form based authentication using the sample. So far everything is working fine but now I have bumped into a problem. I have created a page on which a user can register a new user in the database. It works fine but now I want that single page to be only accessible by a user with a certain username. This is where the problem arises.

For some reason 

HttpContext.Current.User.Identity.Name;

Returns a null value. It seems as if as soon as a user logs in on uilogon.aspx the browser has authenticated the user but doesn't store any of the user info in a cookie. This conclusion is also based on the fact that creating a separate folder for the register page and setting authorization values in web.config in that folder redirects my logged in user to an error page saying he/she is not authorized. The way a cookie is being stored is the same as the sample code:

public class ReportServerProxy : ReportingService2010
   {
      protected override WebRequest GetWebRequest(Uri uri)
      {
         HttpWebRequest request;
         request = (HttpWebRequest)HttpWebRequest.Create(uri);
         // Create a cookie jar to hold the request cookie
         CookieContainer cookieJar = new CookieContainer();
         request.CookieContainer = cookieJar;
         Cookie authCookie = AuthCookie;
         // if the client already has an auth cookie
         // place it in the request's cookie container
         if (authCookie != null)
            request.CookieContainer.Add(authCookie);
         request.Timeout = -1;
         request.Headers.Add("Accept-Language",
            HttpContext.Current.Request.Headers["Accept-Language"]);
         return request;
      }

      [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2201:DoNotRaiseReservedExceptionTypes")]
      protected override WebResponse GetWebResponse(WebRequest request)
      {
         WebResponse response = base.GetWebResponse(request);
         string cookieName = response.Headers["RSAuthenticationHeader"];
         // If the response contains an auth header, store the cookie
         if (cookieName != null)
         {
            Utilities.CustomAuthCookieName = cookieName;
            HttpWebResponse webResponse = (HttpWebResponse)response;
            Cookie authCookie = webResponse.Cookies[cookieName];
            // If the auth cookie is null, throw an exception
            if (authCookie == null)
            {
               throw new Exception("Authorization ticket not received by LogonUser");
            }
            // otherwise save it for this request
            AuthCookie = authCookie;
            // and send it to the client
            Utilities.RelayCookieToClient(authCookie);
         }
         return response;
      }

      private Cookie AuthCookie
      {
         get
         {
            if (m_Authcookie == null)
               m_Authcookie =
               Utilities.TranslateCookie(
                  HttpContext.Current.Request.Cookies[Utilities.CustomAuthCookieName]);
            return m_Authcookie;
         }
         set
         {
            m_Authcookie = value;
         }
      }
      private Cookie m_Authcookie = null;
   }

   [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1812:AvoidUninstantiatedInternalClasses")]
   internal sealed class Utilities
   {
      internal static string CustomAuthCookieName
      {
         get
         {
            lock (m_cookieNamelockRoot)
            {
               return m_cookieName;
            }
         }
         set
         {
            lock (m_cookieNamelockRoot)
            {
               m_cookieName = value;
            }
         }
      }
      private static string m_cookieName;
      private static object m_cookieNamelockRoot = new object();

      private static HttpCookie TranslateCookie(Cookie netCookie)
      {
         if (netCookie == null)
            return null;
         HttpCookie webCookie = new HttpCookie(netCookie.Name, netCookie.Value);
         // Add domain only if it is dotted - IE doesn't send back the cookie 
         // if we set the domain otherwise
         if (netCookie.Domain.IndexOf('.') != -1)
            webCookie.Domain = netCookie.Domain;
         webCookie.Expires = netCookie.Expires;
         webCookie.Path = netCookie.Path;
         webCookie.Secure = netCookie.Secure;
         return webCookie;
      }

      internal static Cookie TranslateCookie(HttpCookie webCookie)
      {
         if (webCookie == null)
            return null;
         Cookie netCookie = new Cookie(webCookie.Name, webCookie.Value);
         if (webCookie.Domain == null)
            netCookie.Domain =
               HttpContext.Current.Request.ServerVariables["SERVER_NAME"];
         netCookie.Expires = webCookie.Expires;
         netCookie.Path = webCookie.Path;
         netCookie.Secure = webCookie.Secure;
         return netCookie;
      }

      internal static void RelayCookieToClient(Cookie cookie)
      {
         // add the cookie if not already in there
         if (HttpContext.Current.Response.Cookies[cookie.Name] == null)
         {
            HttpContext.Current.Response.Cookies.Remove(cookie.Name);
         }

         HttpContext.Current.Response.SetCookie(TranslateCookie(cookie));
      }
   }
}


This leaves me clueless as to where the problem is located and how to fix it..

choose and print and save ssrs report using parameters in asp.net

$
0
0

Hi I have two reports created in ssrs  one is xray and another is bread  both have more than 12 service id in the database

how to make it available in asp.net right now I can bring only xray but i need to bring bread also in the asp.net according to id passed.

I am using radmenu in telerik. can we pass more than one id.

Thanks,

Mary Abraham

Repeated AspNetSessionExpiredException errors, even after session has ended

$
0
0

I have a traditional ASP.NET application written in VS 2010 against .NET 4.0.  It is hosted on a Windows 2003 server, with IIS 6.0.

Within the application, I have a page with an SSRS Report Viewer (version 10) on it.  This connects to our SQL Server 2008 Report Server.  (It is not R2.)

Every few months, I start to see errors, logged every nine minutes, that look like this:

Exception information:
Exception type: AspNetSessionExpiredException
Exception message: ASP.NET session has expired or could not be found
at Microsoft.Reporting.WebForms.ViewerDataOperation..ctor()
at Microsoft.Reporting.WebForms.HttpHandler.GetHandler(String operationType)
at Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

These errors are thrown repeatedly and without any clear end.  No user says they have ever seen evidence of them.  They continue after hours, long after everyone has logged out.  This latest "flare up" has gone on for nearly two days.  

In the past, the only thing that seemed to stop them was:

  1. Stopping the website in IIS
  2. Deleting the virtual directory for the application
  3. Re-creating the virtual directory for the application
  4. Starting the website again

What has not worked:

  1. Killing the w3wp process
  2. Forcing app pool recycling
  3. Bouncing our application server
  4. Bouncing our SQL Server

Trouble is, my so-called fix is no longer working at this point, either!

I considered writing some "shut up" logic to ignore errors of this specific type in global.asax, but this is unacceptable, because:

  1. My users are complaining about degraded performance
  2. The errors are still thrown, so performance degradation will continue regardless of what we do with the errors.

Any help would be tremendously appreciated!

SQL Reporting Service Runtime Error (The item '/reports/Report1' cannot be found. (rsItemNotFound))

$
0
0

hi friends

How to fix this problem when i run SQLSSRS .

Note:

RDL files are in Reports folder(D:/Reports/reports1.rdl)

My code is given below

ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote

ReportViewer1.ServerReport.ReportServerUrl =New Uri("http://localhost/ReportServer")

ReportViewer1.ServerReport.ReportPath ="/reports/Report1"

ReportViewer1.ShowParameterPrompts =False

ReportViewer1.ShowPrintButton =True

ReportViewer1.ServerReport.Refresh()

Thanks

 

Drill though report not working in the SSRS.

$
0
0

Hi , 

I have a SSRS reoprt in a Bar Graph and made a drill through report in it . The link works well in the report viewer . 

But in Asp.net Reportviewer it does not work . I  dont even see the link . 

I have many drill through reports which works well in the Reportviewer . But this on in the Chart is not working :( .. What to do ???

Please help

SSRS Rdl How can Assign Textbox in Custom Code

$
0
0

Hi 

I was Developing as SSRS Report i Need use vb code in custom code ,but how i can access other text value behind of the custom code,

any one can give solve it ?

with regards 

Subaji S


SSRS 2.0 - Tell Row Count in Table Footer?

$
0
0

Greetings,

I am trying to figure out how to determine how many rows have been shown (running count) and have it displayed in my table footer in SSRS 2.0.  

For example:

[Team Name][Player Name][Player Number][Position]

NY Homerunners - Joe Baseball - 12 - 1st Base

.....

...

[     Showing 13 players                                          ]  <--  Footer shows count of "13" thus far, next page would be 26 (e.g.)

When I try to use an expression like: ="Showing " & RowNumber("MyTablix") & "players." it just shows me my total row count on each page.  The help says scope should be the containing group, but I don't think I have a containing group for the table footer. If I add a row within my group, it repeats after every data row.  

Is it possible to do what I am trying to achieve in SSRS 2.0?

Thx,

Rob

SSRS Filters Multiple values

$
0
0

I have parameter called CodeValue which is optional or passed as comma delimited string (multiplevalue) from application to SSRS Report.

I have configured SSRS filter expression like

=ISNOTHING(Parameters!CodeValue.Value) or (Fields!Code.Value = Parameters!CodeValueValue) and Type as "Boolean" operator as "=" and Value as "True"

When I pass multiple value (delimited string) in frontend for Parameter Codevalue it is not returning any records.

How will I do something like seen below

=ISNOTHING(Parameters!ICD_1.Value)or(Fields!ICD_1.Value In Parameters!ICD_1.Value)

rsweb:ReportViewer scrolling in IE11

$
0
0

My apologies if:  (a) this is the wrong location for this posting and/or (b) this question has been asked and answered before...

I have been searching for and reading forum entries for over 2 hours without a resolution to my issue...I am using VS2013, the rsweb:reportviewer, and have SQL Server 2014 standard installed on Windows 8.1.

When I display a report inside a browser window, each pages' content is always longer than the viewable window but there are scroll bars available -- which is where the issue begins.

If I scroll inside IE11, the page controls (page forward/backward, filters, refresh button, export button, etc.) are always scrolled off the top of the page.

If I scroll inside Firefox, Chrome, or Safari the page controls stay static at the top of the page and only the actual report content scrolls (plus the header row, which I find objectionable as well).  If I give this capability to my customers they will be complaining that they always have to scroll back to the top of the page in order to page forward/backward.  Is there any way of solving this problem in IE11?

As I said, I have been through many forum entries in several forums without finding a solution to this problem before posting this item -- but many of the past issues were with regards to much older technology.

If anyone has any suggestions, I would be happy to try them.  Thanks in advance!

Lynn

Exporting to Excel column data type

$
0
0

While exporting to Excel i am not able to Convert column data type from General to Number or Currency. Its showing error on Excel cells "The Number in this cell is formatted as text or preceded by an apostrophe.". Can anyone provide me a link how to change column date type while exporting to excel.

RDLC exporting to excel retain data type like Currency.

Viewing all 1418 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>