c# - Report Viewer multiple values -




i want display report query this

select *  vw_selectsalesbyarticle brandname in (@brandname) order sku, seqname 

so parameter input, try set string this

string strbrand = "asd','bca','qwe"; 

but not show value.

this.datatable1tableadapter.fill(this.dataset1.datatable1, strbrand); this.reportviewer1.refreshreport(); 

i try type of string well:

string strbrand = "'asd','bca','qwe'"; string strbrand = "asd','bca','qwe"; string strbrand = "asd,bca,qwe"; 

but none of them work - idea?





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -