Hi There,
There are 2 problems about the Report Parameters.
1,I have a textbox in the pageHeaderSection and i want to set its value at runtime.Now i have add a parameter named 'Title',but i can't find any event of the report like 'loaded',there is only disposed event .So how i pass the parameter value to the textbox at runtime?
2.As we know,the SqlDataSource component supports parameterized SQL query and i'm using Oracle provider.Now i write a sql as
'SELECT * FROM Person WHERE Name in :Name' .The parameter 'Name' is a array,and my code is like ' new Parameter() {Key = "Name",Value = "('A','B','C')"}',But it doesnt work.How should I edit the 'Value' set to the parameter 'Name'?
Thanks