I am opening Crystal Report in asp.Net 3.5. Report is
opening very well but when I click on Refresh button of
Crystal Report then it gives "Missing Parameter values"
I also tried property of CR Viewer like
crViewer.ReuseParameterValuesOnRefresh = True
But it is not working.
Plz give me solution.
Answer Posted / richard des jardins
What I have done is create a protected sub OR void that
sets all the parameters including the SetDataBaseLogon;
let's call it LoadForm. I am not sure you you are loading
the report on initail page load or if the use has to
trigger an event before it is loaded. If it is on page
load, call the method on page load. If it is loaded after a
user interaction,I call the LoadForm() then set a sesiion
variable inticated that it has been loaded. Then in the
page load, Id add a conditional of that session exists or
is NOT nothing, then call LoadForm.
This is assuming you are using a ReportViewer. The
ReportViewer will handle State so paging should work as
expected.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
Why does my asp.net file have multiple tag with runat=server?
What is the page life cycle in asp.net?
Explain the benefits of viewstate?
How can we create custom controls in asp net?
What is Forms Authentication in ASP.NET?
Explain cookies with example.
How to display validation messages in one control?
What is difference between session and viewstate?
Which protocol is used to call a web service?
What is the difference between page-level caching and fragment caching?
Define static member?
Explain how to prepare culture-specific formatting in .net.
What is the exact purpose of http handlers?
What is the maximum number of classes that can be contained in one dll file?