IE div,updatetargetid没有刷新后续请求

时间:2010-07-20 06:54:37

标签: asp.net ajax asp.net-mvc actionlink

我在使用Ajax.ActionLink的updatetargetid属性显示div中的局部视图时遇到了问题。 这是我的控制器 -

    [HandleError]
    public class HomeController : Controller
    {
        static NumberViewModel model = new NumberViewModel();

        public ActionResult Index()
        {

            model.IsDivisibleBy3 = (model.CurrentNumber % 3 == 0);

            if (Request.IsAjaxRequest())
            {
                return PartialView("ViewUserControl1", model);
            }

            return View();
        }

        [ActionName("Increment")]
        public ActionResult Increment()
        {
            model.CurrentNumber++;
            return RedirectToAction("Index");
        }
    }

我的索引视图 -

  <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Home Page
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <script type="text/javascript">

        function ShowResult() {
            var windowWidth = document.documentElement.clientWidth;
            var windowHeight = document.documentElement.clientHeight;
            leftVal = (windowWidth - 655) / 2;
            topVal = (windowHeight - 200) / 2;       

            $('#result').css({
                "left": leftVal,
                "top": topVal
            });
            $('#background').fadeIn("slow");
        }


    </script>
    <div id="background" class="hiddenDiv">
        <div id="result" class="popupBox">
        </div>
    </div>
   <%= Ajax.ActionLink("Show", "Index", new AjaxOptions() { UpdateTargetId="result", OnComplete="ShowResult", HttpMethod="Get" })%> 
   <%= Html.ActionLink("Increment","Increment") %>

</asp:Content>

这适用于FF,但不适用于IE6-IE8。

IE场景 - 因此,当我点击'show'时,第一次显示'0可以被3整除'。 如果单击“递增”,则数字现在为1,不能被3整除。 现在,如果我点击'show',它会显示'0可以被3整除'。

在VS中保留调试点后,我发现 - 第二次请求根本没有进入服务器。导致不更新updatetargetid div。

之前有人遇到过这个问题吗?

2 个答案:

答案 0 :(得分:3)

即缓存重复请求只需将其添加到您的操作方法:

        Response.CacheControl = "no-cache";
        Response.Cache.SetETag((Guid.NewGuid()).ToString());

所以你将拥有:

[ActionName("Increment")]
    public ActionResult Increment()
    {
        Response.CacheControl = "no-cache";
        Response.Cache.SetETag((Guid.NewGuid()).ToString());
        model.CurrentNumber++;
        return RedirectToAction("Index");
    }

答案 1 :(得分:1)

如果有人偶然发现,这是另一个好的答案 - Disable browser cache for entire ASP.NET website