I have a requirement in SSRS.
I have a Windows Forms form. Say there are certain buttons (say 1,2 etc.) Clicking on the button the reports will be generated. Now if I click button 1, say I may pass a string like
Name: {nameplaceholdervalue}
Age: {ageplaceholdervalue}
If we click on button 2, the string may be
Address: {addressplaceholdervalue}
Phone: {phoneplaceholdervalue}
etc.
As can be make out that the placeholder values will come from the database (by some stored procedure).
And the labels will be inside a string. So how to do this?
