I wanted to access a session variable in javascript in asp.net mvc application. I have found a way to do it in aspx view engine but not in razor.
Please tell me a wa
You can do it this way for a String variable:
String
Or like this if it's numeric:
This is really not a very clean approach though, and requires inline JavaScript rather than using script files. Be careful not to get carried away with this.