由於@Using (Html.BeginForm())
語句開始在「代碼塊模式」形式,在VB.NET上下文需要設置「文本模式」或者使用@:
(單線操作者),@<text>...</text>
(單個或多個線模式)或簡單地@
隨後用HTML塊元素:
' Using @:
@Using (Html.BeginForm())
@:<table cellpadding="0" cellspacing="0" style="width: 800px; height:100px;">
<!-- inner table -->
@:</table>
End Using
' Using @<text>...</text>
@Using (Html.BeginForm())
@<text><table cellpadding="0" cellspacing="0" style="width: 800px; height:100px;">
<!-- inner table -->
</table></text>
End Using
'Using @<tag>...</tag>
@Using (Html.BeginForm())
@<table cellpadding="0" cellspacing="0" style="width: 800px; height:100px;">
<!-- inner table -->
</table>
End Using
後面運營商HTML標籤括起來的用法的原因是,VB.NET允許內聯XML元素通過施加「文本模式」內部「代碼塊模式」,其C#不具有該功能(請參閱Razor syntax for VB.NET)。
因此,問題所提供的樣本應該修改這個樣子,用@
前<tr>
標籤下If
代碼塊創建HTML塊元素:
@Using (Html.BeginForm())
@<table cellpadding="0" cellspacing="0" style="width: 800px; height:100px;">
@If ViewData("IsGroupVessel") Then
@<tr>
<td colspan="3">
@Html.DevExpress().Label(Sub(settings)
settings.AssociatedControlName = "GroupBooking"
settings.Text = "Maximum Exceeded"
End Sub).GetHtml()
</td>
</tr>
End If
</table>
End Using
由於@Dai在他回答說,我也喜歡強類型「視圖模型」具有屬性的使用而不是傳遞ViewBag
ViewData
或,因此修改後的代碼如下所示:
模型
Public Class ViewModel
Public Property IsExceeded As Boolean
' other models
End Class
控制器
Public Function ActionMethod() As ActionResult
Dim model As New ViewModel
' other logic
model.IsExceeded = True
' other logic
Return Me.View(model)
End Function
查看
@ModelType ViewModel
@Using (Html.BeginForm())
@<table cellpadding="0" cellspacing="0" style="width: 800px; height:100px;">
@If Model.IsExceeded Then
@<tr>
<td colspan="3">
@Html.DevExpress().Label(Sub(settings)
settings.AssociatedControlName = "GroupBooking"
settings.Text = "Maximum Exceeded"
End Sub).GetHtml()
</td>
</tr>
End If
</table>
End Using
相關的問題:
Razor View Engine Quirks in VB.NET
Using in Razor VB.net MVC not work as expected
什麼問題?它對我來說看起來沒問題......但請注意,VB不支持ASP.NET Core(包括Razor),因此您應該儘快過渡到C#。 – Dai
請注意,在ASP.NET MVC中沒有「控件」 - 「Html.Label」是一個「HTML助手」,它以無狀態方式直接呈現HTML。 – Dai
我在剃刀視圖中得到了元素的VB語法錯誤,所以語法錯在哪裏? – Julia