I've just found that ShowButtonParameters and ServerCacheMode.None are incompatible.
I'd like to set both options.
ShowButtonParameters = to allow end-user parameters
ServerCacheMode.None = this was the only way I've found to allow simultaneous users open the same report without interfere with each other. ServerCacheMode.Page didn't work, and ServerCacheMode.Session can't be used (sessionless webapp).
If I comment out ServerCacheMode, then it works. But I wish both to work together.
Most relevant code below:
Code: Select all
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Controller = "StiReports",
ServerCacheMode = StiCacheMode.None,
ServerTimeout = TimeSpan.FromMinutes(30),
MenuViewMode = StiWebViewMode.OnePage,
ShowButtonDesign = false,
ShowButtonParameters = true
})
Thanks