If my model have
[DisplayName(\"First Name\")] public string firstName { get; set; }
Then I can print it in the View with LabelFor
@(This.Model.acc_first)
Should work
so in javascript you can use it like
function callme(val) { //some ajax call with @(This.Model.acc_first) }