I'd like to pass a dynamic url as parameter into a javascript, retreiving its value from a MVC controller. Is it possible to use ViewBag?

Here's an example of my needs, which does not work:

$("#jqGrid").jqGrid({
    url: @{Url.Content((string)ViewBag.jqurl);},
...

Thanks in advance!

link|improve this question

59% accept rate
2  
maybe there is a ' missing? url: '@{Url.Content((string)ViewBag.jqurl);}' – Grrbrr404 Jan 13 at 7:19
Thank you @Grrbrr404! It was the main error. I corrected with: url: '@Url.Content(ViewBag.jqurl)' and now it works fine! – Larry Jan 13 at 11:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.