我的 MVC 应用程序的 aspx 页面中有 3 个用户控件。我从一个控制器绑定数据库中的数据。
在选择“过滤器/状态”时,我想将数据(刷新)绑定到“列表”用户控件,而不刷新“过滤器和状态”用户控件。
下面是我在 aspx 页面中的用户控件。请帮助我如何刷新部分页面/用户控件。
我试过只返回“ListView”视图数据。但它正在搜索其他 2 个视图并抛出异常。
<td>
<%Html.RenderPartial("Filter", ViewData["FilterView"]); %>
</td>
<td valign="top" width="15%">
<%Html.RenderPartial("Status", this.ViewData["StatusView"]); %>
</td>
<td valign="top" width="85%">
<%Html.RenderPartial("List", this.ViewData["ListingView"]); %>
</td>