0

我已经建立了一个基于 ajax 的聊天室。除了没有看到任何 ajax 生成的内容的用户之外,这一切都很好。他正在使用IE9。

启用本机 XMLHTTP 支持已选中。

他还应该在哪里查看他的设置?

4

2 回答 2

0

听起来它可能正在缓存 ajax 结果。如果您使用的是 MVC,您可以通过以下方式简单地更改缓存控制元:

[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public class CacheTestController : Controller
于 2012-06-22T20:33:22.520 回答
0

I got the user to install Chrome and try there and that didn't help. So it must have been their Internet connection or firewall settings. Turns out it was the latter as, when they lowered the safety a bit, it all worked.

于 2012-06-23T11:47:51.407 回答