using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using FastReport.Dialog; using System.Windows.Forms; namespace FastReport.Web { public partial class WebReport : WebControl, INamingContainer { private void ButtonClick(ButtonControl button) { if (button.DialogResult == DialogResult.OK) { FormClose(button, CloseReason.None); Prop.CurrentForm++; } else if (button.DialogResult == DialogResult.Cancel) { FormClose(button, CloseReason.UserClosing); Prop.State = ReportState.Canceled; } button.OnClick(null); } private void FormClose(ButtonControl button, CloseReason reason) { DialogPage dialog = button.Report.Pages[Prop.CurrentForm] as DialogPage; dialog.Form.DialogResult = button.DialogResult; FormClosingEventArgs closingArgs = new FormClosingEventArgs(reason, false); dialog.OnFormClosing(closingArgs); FormClosedEventArgs closedArgs = new FormClosedEventArgs(reason); dialog.OnFormClosed(closedArgs); dialog.ActiveInWeb = false; } private string GetButtonHtml(ButtonControl control) { return string.Format("", // class "", // style GetButtonStyle(control), // name control.Name, // value control.Text, // onclick GetEvent("onclick", control, ""), // title control.Text, // disabled control.Enabled ? "": "disabled" ); } private string GetButtonStyle(ButtonControl control) { return string.Format("{0}{1}padding:0;margin:0;", GetStandardStyle(control), GetControlAlign(control)); } } }