using FastReport.Dialog; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace FastReport.Web { public partial class WebReport : WebControl, INamingContainer { private string GetLabelHtml(LabelControl control) { return string.Format("
{1}
", GetLabelStyle(control), control.Text ); } private string GetLabelStyle(LabelControl control) { return string.Format("{0}{1} white-space: pre-wrap;line-height: normal;", GetStandardStyle(control), GetControlAlign(control)); } } }