I have a requirement to add a Hyperlink to a PDF report (RDLC). The report renders fine before adding the HyperLink (generated via .NET, using parameters and datasets).
To make a 'proof of concept' in code I have added
ReportViewer1.LocalReport.EnableHyperlinks = True
ReportViewer1.HyperlinkTarget = "_Blank"
In the RDLC I have added a TextBox, added an Action 'Go to URL' and set the URL as 'http://www.google.com'
When rendering I get
An error occurred during local report processing
When I then have a look into the error in more depth, the innerException is
One or more parameters required to run the report have not been specified.
What am I missing?