我正在使用 asp.net mvc3.visual studio2010。
我的应用程序中有三个框架。当我单击不同窗格中的按钮时,我想刷新另一个窗格。
为此,我frameset
在我的应用程序中使用。我用过
<frameset cols="25%,*,25%">
<frame name ="f1" src="../SearchCriteria/Index"/>
<frame name="f2" src="../SearchResults/Index" />
<frame name="f3" src="../SearchProfile/Index" />
</frameset>
当我调试应用程序时,我的输出中显示空白页面。你能告诉我哪里做错了吗?
我的视图路径是:
View->SearchCriteria->Index.cshtml View->SearchResults ->Index.cshtml View->SearchProfile ->Index.cshtml