I have an app written in ASP on WinServer2003 SBS and CR10.
I have been able to successfully change some of the report object's properties via my ASP code, but not others. For example:
This does NOT Work:
session("oRpt").SQLQueryString = SQLString
This DOES work: (Meaning I read but not write the property)
response.write session("oRpt").SQLQueryString
response.end
This ALSO Works:
session("oRpt").RecordSelectionFormula = " {command.n_rule_key} <= 9"
Any idea why I can change some properties and not others?
I have been able to successfully change some of the report object's properties via my ASP code, but not others. For example:
This does NOT Work:
session("oRpt").SQLQueryString = SQLString
This DOES work: (Meaning I read but not write the property)
response.write session("oRpt").SQLQueryString
response.end
This ALSO Works:
session("oRpt").RecordSelectionFormula = " {command.n_rule_key} <= 9"
Any idea why I can change some properties and not others?