Creating a link from report to page
RDLC reporting offers plenty of options to make reports more interactive. This recipe will demonstrate how to call a page from a report.
How to do it...
Create a report by following the Creating an RDLC report recipe.
Reopen the report in the designer mode.
Go to report properties. In Report Dataset Designer, select an empty line, and then navigate to View | Properties or press Shift + F4, and set the following property:
Property
Value
EnableHyperlinks
Yes
From the View menu, choose Layout.
In the Visual Layout Designer, right-click on the
No_Customer
table box field and select Table Box Properties. You should see a window similar to the following screenshot:In the Properties window, choose the Action tab.
Select the Go to URL option.
Click on the Fx button to enter the following URL in the Select URL field and click on the OK button:
="dynamicsnav://///runpage?page=21&$filter=Customer.'No.'%20IS%20'''%40" + Fields!No_Customer.Value + "*'''"
In the Properties...