HtmlHelperExtensions.cs 6.45 KB
using Microsoft.Reporting.WebForms;
using System.Web;
using System.Web.Mvc;

namespace Vrh.Web.OneReport.ReportViewerForMvc
{
    /// <summary>
    /// HTML helpers for ReportViewerForMvc
    /// </summary>
    public static class HtmlHelperExtensions
    {
        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, ReportViewer reportViewer, int asyncPostBackTimeout)
        {
            return ReportViewerForMvc.GetIframe(reportViewer, null, asyncPostBackTimeout);
        }

        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="htmlAttributes">The object containing the HTML attributes of the iframe.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe with the specified attributes that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, ReportViewer reportViewer, object htmlAttributes, int asyncPostBackTimeout)
        {
            return ReportViewerForMvc.GetIframe(reportViewer, htmlAttributes, asyncPostBackTimeout);
        }

        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="report">An object containing the LocalReport/ServerReport properties.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, object reportViewer, object report, int asyncPostBackTimeout)
        {
            ReportViewer reportViewerControl = ReportViewerForMvc.AnonymousReportViewer(reportViewer, report);
            return ReportViewerForMvc.GetIframe(reportViewerControl, null, asyncPostBackTimeout);
        }

        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="report">An object containing the LocalReport/ServerReport properties.</param>
        /// <param name="htmlAttributes">The object containing the HTML attributes of the iframe.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe with the specified attributes that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, object reportViewer, object report, object htmlAttributes, int asyncPostBackTimeout)
        {
            ReportViewer reportViewerControl = ReportViewerForMvc.AnonymousReportViewer(reportViewer, report);
            return ReportViewerForMvc.GetIframe(reportViewerControl, htmlAttributes, asyncPostBackTimeout);
        }

        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="report">An object containing the LocalReport/ServerReport properties.</param>
        /// <param name="parameters">Object that contains the parameters for a report.</param>
        /// <param name="htmlAttributes">The object containing the HTML attributes of the iframe.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe with the specified attributes that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, object reportViewer, object report, object parameters, object htmlAttributes, int asyncPostBackTimeout)
        {
            ReportViewer reportViewerControl = ReportViewerForMvc.AnonymousReportViewer(reportViewer, report, parameters);

            return ReportViewerForMvc.GetIframe(reportViewerControl, htmlAttributes, asyncPostBackTimeout);
        }

        /// <summary>
        /// Returns an HTML iframe that renders an ASP.NET ReportViewer control.
        /// </summary>
        /// <param name="helper">The HTML helper instance that this method extends.</param>
        /// <param name="reportViewer">The object containing the ReportViewer control properties.</param>
        /// <param name="report">An object containing the LocalReport/ServerReport properties.</param>
        /// <param name="parameters">Object that contains the parameters for a report.</param>
        /// <param name="dataSources">The data sources to be added to the report.</param>
        /// <param name="htmlAttributes">The object containing the HTML attributes of the iframe.</param>
        /// <param name="asyncPostBackTimeout"></param>
        /// <returns>An HTML iframe with the specified attributes that sets its heigh and width based on the content of the report.</returns>
        public static HtmlString ReportViewer(this HtmlHelper helper, object reportViewer, object report, object parameters, object dataSources, object htmlAttributes, int asyncPostBackTimeout)
        {
            ReportViewer reportViewerControl = ReportViewerForMvc.AnonymousReportViewer(reportViewer, report, parameters, dataSources);

            return ReportViewerForMvc.GetIframe(reportViewerControl, htmlAttributes, asyncPostBackTimeout);
        }
    }
}