在我的应用程序中,主视图加载了一个_Layout.vbhtml母版页。我渲染了几个部分,并且正确打印出默认的contractNumber
。当我更改模型的contractNumber
时,视图不会反映更改并显示默认值。
以下是我的Index.vbhtml
文件中调用模型的部分中的代码:
@Section CUInfo
Contract Number: @Model.contractNumber
End Section
在我的_Layout.vbhtml页面中,我有:
@RenderSection("CUInfo", required:=True)
我知道contractNumber
中包含正确的值,当我单步执行代码时,它会越过@Model.contractNumber
行。