我有 aspxgridexporter 和一个按钮,当我单击该按钮时,它会显示:
无法解析从服务器收到的消息。
我无法放置触发器,它给了我一个错误,提示在更新面板中找不到触发器。
这是我的 vb.net 代码和 aspx 代码
Dim options As DevExpress.XtraPrinting.XlsExportOptions = New DevExpress.XtraPrinting.XlsExportOptions()
options.SheetName = "grid"
cusgrdexport.WriteXlsToResponse(options)
这是一部分 aspx 代码
<asp:Button runat="server" ID="print" text="printing" OnClick="print_Click" />
<dx:ASPxGridViewExporter ID="cusgrdexport" GridViewID="dgCustomer" ExportEmptyDetailGrid="True" FileName="Customers" runat="server"></dx:ASPxGridViewExporter>
<dx:ASPxGridView runat="server" KeyFieldName="Id" AutoGenerateColumns="False" ID="dgCustomer" ClientInstanceName="customergrid" CssFilePath="~/App_Themes/Glass/{0}/styles.css" CssPostfix="Glass" Width="690px" Font-Names="Verdana" Font-Size="8pt">
我急需解决方案,请