I have develop one ssrs 2005 report. My first question is How to pass multi-value parameter in ssrs report URL. For Example simple parameter passing to report url is worked fine for me . http://MYSERVER/ReportServer?MyReport&rs:Command=Render&QuestionName=Q1 but how to pass muli values for the same parameter like http://MYSERVER/ReportServer?MyReport&rs:Command=Render&QuestionName=Q1,Q2,Q3 etc
I tried it this way like http://MYSERVER/ReportServer?MyReport&rs:Command=Render&QuestionName=Q1&QuestionName=Q2&QuestionName=Q3 but when I execute the report it took only the first parameter value that is "Q1"
Thanks