Привет. У меня проблема с UpdatePanel. Я пишу так:
Код: Выделить всё
Код: Выделить всё
protected void Page_Load(object sender, EventArgs e){}
protected void ViewButton_Click(object sender, EventArgs e)
{
StiReport report = new StiReport();
var applicationDirectory = HttpContext.Current.Server.MapPath(string.Empty);
var reportPath = applicationDirectory + "\\Report.mrt";
report.Load(reportPath);
StiWebViewerControl.Report = report;
}