我在一个页面上有一个链接,它会回发。
otherOptionsContainer.Controls.Add(new LiteralControl(String.Format("<a href='{0}' onclick='return {1}.exportItems();'>Export</a><br/>", exportURL, this._clientInstanceName)));
和 http 处理程序
byte[] ms_excel = some_params_from_code
MemoryStream ms_excel_tream = new MemoryStream(ms_excel);
context.Response.ContentType = CONTENT_TYPE_MS_EXCEL;
String dateNow=DateTime.Now.ToString("dd-MMM-yyyy_HH_mm", new System.Globalization.CultureInfo("en-US"));
context.Response.AddHeader("Content-Disposition", string.Format("attachment; filename=Export_{0}.xls", dateNow));
ms_excel_tream.WriteTo(context.Response.OutputStream);
ms_excel_tream.Close();
我需要将 some_params_from_code 发送到 httpHandler。我有一些限制。1. 不要使用查询字符串 2. 不要使用 Cookie
我试图像这样使用ajax发送数据
$.ajax({
url: "_Layouts/blah/blahHandler.ashx",
contentType: "application/json; charset=utf-8",
data: { 'key1':'value1'},
dataType: "json",
success: OnComplete,
error: OnFail
});
但 http 处理程序写入另一个响应对象。或者另一个上下文来到处理程序。