Код: Выделить всё
if (Page != null && !Page.IsPostBack)
{
StiReport stiReport1 = new StiReport();
stiReport1.Load(путь к отчету);
stiReport1.Compile();
stiReport1.Dictionary.Variables["StartDate"].ValueObject = "01.01.2000";
stiReport1.Dictionary.Variables["FinishDate"].ValueObject = "01.01.2001";
StiWebViewer1.Report = stiReport1;
}