I have this situation in my SL4 application: We create some User Accounts in the Silverlight APP, now we want to generate printable reports for the generated accounts which we will hand out to the users. The idea is to save the information from the created account to a database, redirect from the Silverlight App to an ASP.NET page passing the ID of the stored account information and display the data in a report viewer control in asp.net from where it can be printed and exported.
Is this possible or am I completely wrong? How can I redirect from silverlight to the asp.net page and how can I pass the ID?
I have this situation in my SL4 application: We create some User Accounts in
Share
You can use Window.Navigate to do the same. For example,
You can pass the id using the query-string.
See this SO question that discusses other options: redirect to another page from Silverlight