I have a report that I am running from an asp page. I am using input boxes to get text from the user that is passed to the report like so:
set session("ParamCollection" = Session("oRpt".Parameterfields
set Param01 = session("ParamCollection".Item(1)
ParamValue01 = Request.Form("Param01"
Call Param01.SetCurrentValue (CStr(ParamValue01), 12)
Basically I am just taking the parameters example from from the seagate software sample asp pages and modifying it. It works fine for single value parameters, but I need to be able to pass multiple values to a single parameter field that has been set to accept multiple values. Is this possible? Also, are there better examples on web based use of the activex viewer? If so, where can I find them? Thank you in advance!
set session("ParamCollection" = Session("oRpt".Parameterfields
set Param01 = session("ParamCollection".Item(1)
ParamValue01 = Request.Form("Param01"
Call Param01.SetCurrentValue (CStr(ParamValue01), 12)
Basically I am just taking the parameters example from from the seagate software sample asp pages and modifying it. It works fine for single value parameters, but I need to be able to pass multiple values to a single parameter field that has been set to accept multiple values. Is this possible? Also, are there better examples on web based use of the activex viewer? If so, where can I find them? Thank you in advance!