Add a clear button to SQL Server Reporting Services If you ever had the need to add a clear / reset button to your standard SQL Server Reporting Services report viewer, here’s a way to do it. Normally when reports are displayed, they are piped through the ReportViewer.aspx page that comes with SSRS. This page [...]
A reminder to self: When deplyoing a WCF service, and the assembly is registered in the GAC, don’t forget that in the .svc file one needs to put the full assembly path in the Service element: <%@ServiceHostLanguage=”C#”Debug=”true”Service=”TYPENAME, ASSEMBLY NAME, Version=1.0.0.0, Culture=neutral, PublicKeyToken=12345678901234″CodeBehind=”HelloWorld.svc.cs” %>