woodlumb
woodlumb
About
- Username
- woodlumb
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
You have right. It's work. I had to be added in 'classic mode' . Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
I know where is the problem. When is set application pool on 'Classic' mode , FastReportHandler isn't set on IIS in mapping service( isn't read from web.config ). It have to be 'Integrated' mode. But why isn't work on 'Classic' mode?
-
Maybe limit requests on IIS for FastReportHandlar ?
-
I have it all. On my computer works properly. On another dont' work (another server , the same application). Maybe IIS configuration is not properly.
-
I don't get any request . In debug i look ProcessRequest(HttpContext context) function dont' run. Where the problem is?
-
I can't install fastreport on web server. I have to do it by Fastreport.config or create new dll file. I prefer first solution.
-
Where create ( which folder ) this file , and what write in this file to set webmode. Have you any example?
-
Yes i know. Now i want change webmode without compile dll file. When I set webmode on false opensubkey function is ignored ( i check it on debug). Can i set this parameter in config file for fastreport ( without change dll file ). I don't want ( i c…
-
I have set 'false' but on my computer settings is no matter. On another computer, the settings is important. Can i set this parameter in config file for fastreport ( without change dll file ). I don't want ( i can't ) compile project.
-
Above code is string. I want change this string to c# structure to read 'zm' like varaible
-
I read instruction , but RegisterData(...) don't work in _StartReport event. Before Load(...) is work correctly.
-
Now i have to use Substring , Replace etc. to get 'zm' from ScriptText string.
-
Read public variable. For example have code: public class ReportScript   {     public int zm =  123; I want to read 'zm' like int v = Report.zm
-
All code in previous post is set in _StartReport event in report. I get error when i set   Data1.DataSource = tab; Objects 'tab' and 'dt' are global object. Where the problem is ?