1

在这里,我在单击按钮时调用了一个 javascript 函数,我需要在 javascript 函数执行完后调用服务器端方法。

Javascript 函数

  function exportCharts(exportFormat) {

            initiateExport = true;
            for (var chartRef in FusionCharts.items) {
                if (FusionCharts.items[chartRef].exportChart) {
                    document.getElementById("linkToExportedFile").innerHTML = "Exporting...";
                    FusionCharts.items[chartRef].exportChart({ "exportFormat": exportFormat });
                }
                else {

                    document.getElementById("linkToExportedFile").innerHTML = "Please wait till the chart completes rendering...";
                }
            }

        }

服务器端方法

 protected void imgBTNExportPPT_Click(object sender, ImageClickEventArgs e)
        {
            try
            {
               PredictExportToPPT objOExporttoPPT = new PredictExportToPPT();
               PredictionModel();
                string reportNames = ObjCommon.GetBIReportNames("Prediction", "Report");
                reportNames += ObjCommon.GetBIReportNames("Prediction", "Table");
               objOExporttoPPT.ExportToPPTPredict(ObjPredictInputParameter, reportNames, ObjSharedEntities.PredictTableData);
                string itemname = "PPTOutput.pptx";
                HttpContext.Current.Response.Clear();
                HttpContext.Current.Response.ContentType = "pptx";
                HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + itemname + "");
       HttpContext.Current.Response.BinaryWrite(System.IO.File.ReadAllBytes(HttpContext.Current.Server.MapPath(DataTemplate.PPTOutputTemplateFilePath)));
                HttpContext.Current.Response.Flush();
                HttpContext.Current.Response.End();
               }
            catch (Exception exceptionMessage)
            {
                throw (exceptionMessage);
            }
            finally
            {
                GC.Collect();
            }
        }

我试过这样

  $(document).ready(function () {
        $("#imgBTNExportPPT").click(function (e) {
            e.imgBTNExportPPT_Click();
            $.ajax({
                type: "POST",
                url: "PEventPerformance.aspx/updateContent",
                data: "{}",
                success: function (result) {
               }
            });
        });
    });

有什么建议吗??

4

3 回答 3

2

imgBTNExportPPT_Click看起来像一个按钮的点击事件。您可以尝试以下方法从 JavaScript 引发事件

将此 javascript 放在 aspx 页面中

<script type="text/javascript">
    function myfunc() {
        <%= Page.ClientScript.GetPostBackEventReference(imgBTNExportPPT, String.Empty) %>;
    }
</script>

针对 OnClientClick 调用此函数

<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="myfunc();" />

这将触发服务器端事件:

protected void imgBTNExportPPT_Click(object sender, ImageClickEventArgs e)
{

}
于 2012-06-27T10:03:53.150 回答
0

你可以使用 Ajaxpro 来达到这个目的,如果你想生成一个服务器端调用,而不需要像按钮点击这样的任何事件。

在您的代码隐藏文件中。在 Page_Load 部分下添加

AjaxPro.Utility.RegisterTypeForAjax(typeof(YourCodebehindfilename));

在客户端

调用服务器端方法,如

var content =  YourCodeBehind.Yourmethod(optional parameters).value;

在内容中,您可以将响应作为对象获取并可以进行进一步的更改

于 2012-06-27T10:12:49.740 回答
0

我想执行服务器端方法的最佳方法是使用 Web 服务。

您必须编写一个包含服务器端方法的 Web 服务。然后您可以使用 AJAX 调用它。

于 2012-06-27T10:50:10.163 回答