मैं एक cshtml फ़ाइल में एक जावास्क्रिप्ट चर में एक बूलियन कैसे प्रस्तुत करूं?
वर्तमान में यह एक सिंटैक्स त्रुटि दिखाता है:
<script type="text/javascript" >
var myViewModel = {
isFollowing: @Model.IsFollowing // This is a C# bool
};
</script>