If I do string interpolation like so:
Dim answer as integer = 42
Dim fred as string = $"the answer is {answer}"
It works if I do it in a VB file, but if I do it in an ASPX file, I get this error:
BC30037: Character is not valid.
How do I enable string interpolation in ASPX files?