在MVC3中自我ajax局部视图

时间:2011-10-05 18:10:34

标签: ajax asp.net-mvc-3 asp.net-mvc-partialview

我在id为'rating'的div中有局部视图。所以我在同一局部视图中有一个ajax链接。所以,当我点击链接时,它会更新一次,如果我第二次点击链接,它会加载div两次并点击三次加载多次。

有人有同样的问题吗?

<div class="rating"> 
  @Ajax.ActionLink("Flag this review as inappropriate", "CourseRatingFlag", "Content", new { cID = Model.courseRatings[index].crid}, new AjaxOptions() {  HttpMethod = "POST",TargetId="rating" })
some content...
  </div>

1 个答案:

答案 0 :(得分:0)

有一个类似的问题here

就我而言,我解决了将目标div从局部视图中定位的问题。