禁用以 EXCEL 格式导出 RDLC 报告

发布于 2024-12-01 06:02:31 字数 132 浏览 0 评论 0原文

C# - 如何禁用以 EXCEL 格式导出 RDLC 报告

在此处输入图像描述

只是想隐藏“Excel”选项下拉列表。

C# - How to disable exporting RDLC report in EXCEL format

enter image description here

Just want to hide the "Excel" option from the dropdownlist.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疯了 2024-12-08 06:02:31

您可以使用下面的 jquery 脚本轻松完成此操作。

$(document).ready(function () {
     $("a[title='Excel']").parent().hide();  // Remove from export dropdown.
     $("a[title='MHTML (web archive)']").parent().hide();  
     $("a[title='TIFF file']").parent().hide();  
});

注意:Excel、PDF、Word 区分大小写。因此,您可以隐藏任何您想要的选项,而不会弄乱代码后面的代码。

You can do this with an ease by using jquery below script.

$(document).ready(function () {
     $("a[title='Excel']").parent().hide();  // Remove from export dropdown.
     $("a[title='MHTML (web archive)']").parent().hide();  
     $("a[title='TIFF file']").parent().hide();  
});

Note: Excel, PDF, Word are case-sensitive. So you can hide any option you want without messing with code at code behind.

青春有你 2024-12-08 06:02:31

在网上找到的

#region "Disable Excel Export"
private void CustomizeRV(System.Web.UI.Control reportControl)
{

    foreach (System.Web.UI.Control childControl in reportControl.Controls)
    {

        if (childControl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
        {

            System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)childControl;

            ddList.PreRender += new EventHandler(ddList_PreRender);

        }

        if (childControl.Controls.Count > 0)
        {

            CustomizeRV(childControl);

        }

    }

}


//Dropdown prerender event
//You can hide any option from ReportViewer( Excel,PDF,Image )

void ddList_PreRender(object sender, EventArgs e)
{
    System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)sender;
    System.Web.UI.WebControls.ListItemCollection listItems = ddList.Items;

    if ((listItems != null) && (listItems.Count > 0) && (listItems.FindByText("Excel") != null))
    {
        foreach (System.Web.UI.WebControls.ListItem list in listItems)
        {
            if (list.Text.Equals("Excel"))
            {
                list.Enabled = false;
            }
        }
    }
}
#endregion

found it on net

#region "Disable Excel Export"
private void CustomizeRV(System.Web.UI.Control reportControl)
{

    foreach (System.Web.UI.Control childControl in reportControl.Controls)
    {

        if (childControl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
        {

            System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)childControl;

            ddList.PreRender += new EventHandler(ddList_PreRender);

        }

        if (childControl.Controls.Count > 0)
        {

            CustomizeRV(childControl);

        }

    }

}


//Dropdown prerender event
//You can hide any option from ReportViewer( Excel,PDF,Image )

void ddList_PreRender(object sender, EventArgs e)
{
    System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)sender;
    System.Web.UI.WebControls.ListItemCollection listItems = ddList.Items;

    if ((listItems != null) && (listItems.Count > 0) && (listItems.FindByText("Excel") != null))
    {
        foreach (System.Web.UI.WebControls.ListItem list in listItems)
        {
            if (list.Text.Equals("Excel"))
            {
                list.Enabled = false;
            }
        }
    }
}
#endregion
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文