rekha mam, i am using a table which field are CustomerNo ,OrderNo, StartDate ........and make a crystal report to chossing these field in crystal reports and then declare three Parameters which are @FromDate,@ToDate,@Order in crystal report
i want to display these parameters in aspx1 and crystal report on aspx2 , in aspx1 i am using two datepicker control,one Dropdownlist, and one Button control, aspx2 have crystal report viewer control .
i want simply put my filter page aspx separate from crystal report page when i click button then aspx2 display the report....
i am not using stored procedure...simple crystal report parameters
please help me ......
Rekha SinghPosted Jan 4, 2010, 8:03 AM
create proc testCR
@OrderNo as nvarchar(50)
as
select * from tablename where OrderNo= @OrderNo and date between given two dates