3

我收到错误 102 ():未知文件类型。尝试从 ASP.Net 应用程序下载 .ics 文件时。该文件如下所示:

BEGIN:VCALENDAR
PRODID:-//Test
VERSION:2.0
METHOD:PUBLISH
BEGIN:VEVENT
UID:uid
CLASS:PUBLIC
DTSTART:20130506T173000
DTEND:20130506T190000
DESCRIPTION;ENCODING=QUOTED-PRINTABLE: What would you do with an extra $2500? 
SUMMARY:Smoking Cessation May
PRIORITY:0
LOCATION:ARMC Theater
END:VEVENT
END:VCALENDAR

我在 C# 中的响应代码是这样的:

HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader("Content-Disposition", String.Format("attachment;filename={0}.ics", "example"));
HttpContext.Current.Response.ContentType = "text/calendar";
HttpContext.Current.Response.Write(calendarData.ToString());
HttpContext.Current.Response.End();

有什么建议么?

4

1 回答 1

4

我读过的所有内容都表明通过 Chrome Mobile 是不可能的。如果你找到答案,我也会感兴趣。

如果有任何帮助,我知道可以通过 Safari Mobile。答案在这里:

你如何添加一个链接,将一个事件从 safari 添加到你的 iPhone 日历?

使用 Safari Mobile,解决方案是简单地链接到 .ics 文件,但在 iOS 5 之前,这在 Safari Mobile 上是不可能的。

对不起,祝你好运!

于 2013-08-01T07:21:40.910 回答