I have created a crystal report web service which works fine. However if I change a record in the database then reopen the report it still shows the old data. The only way I can get it to show the new value is to re-start IIS on the host server.
I am using
VB.Net and Visual Studio 2005 and the built in crystal report program to create my reports.
I use the report viewer in the client program and set its data source to the new instance of my crystal report webservice.
Code:
Dim Rep As New VHCAnalysisWebRef.rptVHCAnalysisService
If UseProxy Then
Rep.Proxy = VHCProxy
End If
ReportViewer.ReportSource = Rep
Please help
Thanks:D