i am working through an purchase & sales report.i want to display the purchase report for daily basis using rdlc report how can i do that...can any one help me.....i use date.today to pass in database to fetch the record but how to display that record in report..
sqlcommand=" select * from purchase_master where bill_date=@bill_date"
sqlcommand.parameters.clear()
sqlcommand.parameters.addwithvalue("@bill_date",date.today)
now how can i pass this records to report and view in report viewer...