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
Post a Comment