I have added a reportviewer to my page :
<asp:ScriptManager ID="Scriptmanager1" runat="server"></asp:ScriptManager>
<rsweb:ReportViewer ID="repViewer" runat="server" Width="100%" Height="100%" OnDrillthrough="repViewer_Drillthrough"></rsweb:ReportViewer>
Reports are loading fine, but when I click on a drillthrough column (a link), the report seems to reload (navigation buttons of the report go disabled and enabled again), but that's it, the OnDrillthrough event is not triggered (the breakpoint is not reached).
What am I doing wrong ?
EDIT
After playing a bit more with the control, I've noticed that nothing actually works. Paging, Searching, DrillingThrough, you name it... The report goes disabled and enabled again, but it always shows the same set of data (first page basically...)
One more thing. I don't have the report locally in my website. I use the ReportViewer to access remote reports. The code-behind is as follow:
protected void Page_Load(object sender, EventArgs e)
{
repViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
repViewer.ServerReport.ReportServerUrl = new Uri("http://mssql/reportserver");
repViewer.ServerReport.ReportPath = "/Domiciliations/myreport";
repViewer.ServerReport.Refresh();
}