我有一个部分视图,用户可以在其中执行搜索,搜索结果显示在选择框中。在我的主视图中,我有一个部分应该在按下选择按钮后显示搜索结果。现在,当我单击选择按钮时,会将正确的信息加载到我的主视图的正确模型中,但主视图不会改变。当我单击刷新时,页面会正确更新。在插件视图中单击按钮时如何使页面自动更新?
我在主应用程序的主视图 ( Index.vbhtml
) 中的部分:
@Section CUInfo
Credit Union Name: @Model.CUInfo.CUName
end section
这是我的插件中的控制器方法:
Function ChangeCUInfo(strCUName As String) As ActionResult
m_hostApp.CUInfo.CUName = strCUName
m_hostApp.blnPluginRefreshButtonPressed = True
Return View("Index", m_hostApp)
End Function
我尝试在 hostApp 对象中设置一个布尔值,然后在我的主剃须刀视图中调用此函数,如果它是真的:
@code
If Model.blnPluginRefreshButtonPressed = True Then
@<script type="text/javascript">
$(function () {
window.location.reload();
});
</script>
End If
Model.blnPluginRefreshButtonPressed = False
End Code
编辑:
单击选择按钮时调用的 JS 函数:
function loadCU(CUInfo) {
strCU = CUInfo.split('|');
strCUName = strCU[0];
$.ajax({
type: "POST",
url: "/CUContractNumberPlugin/ChangeCUInfo",
data: { "strCUName": strCUName }
});
}
插件视图中使用的表单:
@Using (Html.BeginForm("ChangeCUInfo", "CUContractNumberPlugin"))
@<div id="LogoSigSearch" style="height:300px;width:500px;position:relative;">
<span style="display:inline-block;height:20px;width:166px;position:absolute;top:35px;left:5px;">Credit Union Name</span>
<br />
@Html.TextBox("strCUName")
<input type="submit" name="LogoSigSearch$ctl02" value="Search" id="LogoSigSearch_ctl02" tabindex="3" style="width:60px;position:absolute;top:5px;left:352px;" />
<input name="LogoSigSearch$ctl05" type="button" onclick="javascript:clearSearch()" value="Clear" style="position:absolute;top:35px;left:352px;width:60px;" />
<select size="4" name="LogoSigSearch$ctl06" id="LogoSigSearch_ctl06" tabindex="5" style="height:230px;width:342px;position:absolute;top:65px;left:5px;"></select>
<input type="button" name="SelectCU" value="Select" onclick="javascript:loadCU(LogoSigSearch_ctl06.options[LogoSigSearch_ctl06.selectedIndex].value)" tabindex="4" style="width:60px;position:absolute;top:65px;left:352px;" />
</div>
End Using