我有一个有条件的组合框。我想绑定条件,但是当我运行它时,我得到错误End of statement expected
。
然而,当我注释掉这些线时,它完美无缺。
<li>
<select name="account_type">
<option value="I" <% If Request.Form("account_type") = "I" Then Response.Write("SELECTED") End If %> ">Individual</option>
<option value="C" <% If Request.Form("account_type") = "C" Then Response.Write("SELECTED") End IF %>>Corporate</option>
</select>
</li>
我做错了什么? 我正在使用VB.Net内联编码。
答案 0 :(得分:3)
'结束如果'仅用于多行If块。如果操作与条件位于同一行,则不使用“End If”。此外,你应该计算你的双引号,因为它们似乎不匹配。