User-1997257017 posted
I need to make a change to an existing vb.net 2010 web form application that displays reports (letters) in ssrs 2008 reports based upon how may days delinqent a particular customer is. The information for each letter (report) is obtained from a string
field called strLetter. The string field called strLetter and the field contains the information in html format.
When the existing ssrs reports are running the users are able to select parameter values to run the report. One of the parameters is to select how may days delinquent a customer is (5 days, 15 days, 20 days, 30 days, and 90 days).
Right now there are letters for 5 days, 15 days, 20 days, 30 days, and 90 days that go directly to the customer. Now I need to create an additional 20 day letter that goes to my company's attorney. This means that I have 2 letters that need to be generated
at the 20 day mark (1 for the customer and 1 for the attorney).
To solve this situation, I have the following questions:
1. Is there a way to create the 2 20 day letters by using the existing 20 day drop down list? In other words, in the ssrs report can I create a page break between the 2 20 reports (letters)? Can I have something like:
strstrLetter value
page break,
strLetter value2.
If so how would I accomplish this goal?
2. If the above is not a possibility can tell me how to accomplish this goal in vb.net to setup the html or other possbility? I only know 'basic' html.