我生成一个vcard,我发送到客户端使用以下代码片段:
Response.AddHeader("Content-Disposition",string.Format("attachment; filename={0}",fileNameOnly)); Response.ContentType = "text/x-vcard"; Response.ContentEncoding = Encoding.GetEncoding("ISO-8859-1"); Response.Write(vCard.ToString()); Response.End();
但是,我需要在一个内部控制页面和UpdatePanel中使用vCard.不幸的是,根据Update panel and Response write这不行,导致错误.
我想知道有什么办法可以将vcard / file的内容发送到客户端的浏览器,并显示不包含Response.Write的“打开/保存”对话框?