When I create a parameter field that allows multiple discrete values to be entered. How do I assign these entered values to the parameter array in the parameters collection within an Active Server Page
I'm using the following ASP code:
set ParamDefCollection = Session("oRpt"
.Parameterfields
'this creates the parameter collection
set session("Param"
=ParamDefCollection
'this creates the parameter
set MyParam1 =session("Param"
.item(1)
'this sets it's value
call MyParam1.SetCurrentValue(Cdate("xxxx"
,10)
How do you set multiple values for the one parameter?
I'm using the following ASP code:
set ParamDefCollection = Session("oRpt"
'this creates the parameter collection
set session("Param"
'this creates the parameter
set MyParam1 =session("Param"
'this sets it's value
call MyParam1.SetCurrentValue(Cdate("xxxx"
How do you set multiple values for the one parameter?