<b>Start Date: </b>@employee["StartDate"].<br />
使用 MVC Razor 3/C#,如何检查employee["StartDate"]
cshtml 中的值是否为空/空?因此,如果是,我改为显示:
<b>Start Date: </b>Unknown.<br />
我试过了:
@if(employee["StartDate"] == null){<b>Start Date: </b>Unknown.<br />}
但这不起作用。