我正在尝试将以下Javascript代码从C#razor转换为在Vbhtml中使用它。当我在我的vb.net环境中插入代码时,我收到以下错误" BC36637:'?'字符不能在这里使用。 "和分号&#39 ;;'在false结尾处也给出了语法错误。感谢您指导我。
<script type="text/javascript">
function AppViewModel() {
var self = this;
self.loggedIn = @(Request.IsAuthenticated ? "true" : "false");
}
$(document).ready(function () {
ko.applyBindings(new AppViewModel());
});
</script>