Ajax.ActionLink问题

我正在阅读专业的asp.net mvc书并实施书呆子晚餐示例 当开始使用Ajax时:
<%: Ajax.ActionLink( "RSVP for this event",
                             "Register", "RSVP",
                             new { id=Model.DinnerID }, 
                             new AjaxOptions { UpdateTargetId="rsvpmsg" }) %> 
                                <% } %>
好吧,但是点击“RSVP for this event”链接IE显示错误信息:   “系统未定义” 当点击调试它时,请参考以下行:
<a href="/RSVP/Register/4" onclick="Sys.Mvc.AsyncHyperlink.handleClick(this, new Sys.UI.DomEvent(event), { insertionMode: Sys.Mvc.InsertionMode.replace, updateTargetId: &#39;rsvpmsg&#39; });">RSVP for this event</a> 
我知道“系统”应该是“系统”,但如何解决这个问题。 thnks     
已邀请:
错误消息是正确的。您需要确保在视图中包含正确的javascript文件:
<script src="/Scripts/MicrosoftAjax.js" type="text/javascript"></script>
<script src="/Scripts/MicrosoftMvcAjax.js" type="text/javascript"></script>
    

要回复问题请先登录注册