Response.ContentType =“文本/x-vcalendar”
收到错误“在此上下文中响应不可用”
我正在尝试生成 vCalendar,但在 Response.ContentType = "text/x-vcalendar" 上
。 我正在使用 vb.net 1.1 框架。
有任何想法吗?
-米希尔
I am trying to generate a vCalendar but i am getting an error "response is not available in this context"
on Response.ContentType = "text/x-vcalendar" .
I am using vb.net , 1.1 framework.
Any ideas?
-MIthil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的代码包含在类中,您可能无法访问响应。 您可以尝试使用 HttpContext.Current.Response.ContentType。
If your code is wrapped up in a class you may not be able to access the Response. You could try using HttpContext.Current.Response.ContentType.