@{
    ViewBag.Title = "11";
}
<script type="text/javascript">    $(function () {
        $("#divTreeview").treeview();    });
</script>
<style type="text/css">
</style>
<div style="width:200px;" class="leftm" id="secondaryMenu">
    <div id="divTreeview" class="treeview filetree treeview-famfamfam main">
        @Html.Raw(ViewBag.MenuList)
    </div>
</div>
<div class="rightm" id="contentDIV">
    <iframe id="iFrameMenuManage" name="iFrameMenuManage" width="98%" scrolling="no" height="100%" frameborder="0" src="/SysAdmin/Menu/AddMenu?parentid=0">
    </iframe>
</div>这个是MVC3.0做的。 现在是这个情况 我在iframe中有个submit。 我希望能在iframe对应的src="/SysAdmin/Menu/AddMenu?parentid=0"的controller中控制整个页面(iframe所在的页面)一起刷新, 不知道怎么实现。求各位帮下忙。如果在iframe所在的controller中这样返回return RedirectToAction("iframe所在页面的controller");实现的是在iframe中又将整个页面加载了。希望能在controller中实现