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!
url: '@Url.Content(ViewBag.jqurl)'and now it works fine! – Larry Jan 13 at 11:21