Just starting out with C# and looking to retrieve my C# value in javascript
After some research, I came across
var javacriptVariable = "<%=CsVariable%>";
as a way to extract the CsVariable value from my .cs file. However, when I attempt to log it, it simply logs <%=CsVariable%>
as a string.
Any suggestions on how I can successfully extract the value from my C# file?