vote up 1 vote down star

Hello,

I would like to access a Model property value in ASP MVC at the View's javascript section

What is the best way to do so?

Thanks

flag

2 Answers

vote up 4 vote down check

I can't think of another way then just simpy printing it ;

<script type="text/javascript">
    var myJavaScripVar = '<%=Model.Property %>';
</script>
link|flag
Agreed, just remember to escape the property in case it contains quotes etc... – jasondoucette Oct 24 at 16:59
Great!!! thank you – Ws Oct 24 at 17:10
vote up 0 vote down

Another option is to use an Ajax request to a controller method that returns a json result.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.