How can I store a value in the ViewBag accessing it from javascript?

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

You cannot store a value in ViewBag from javascript. ViewBag is a server side concept and exists only on the server. Javascript runs on the client. As far as storing some data from ViewBag into a javascript variable is concerned you could use the following:

<script type="text/javascript">
    var foo = @Html.Raw(Json.Encode(ViewBag.FooBar))
</script>

Now this being said I always advice people against using ViewBag/ViewData in ASP.NET MVC. I recommend using strongly typed view and view models. So your code will look like this:

@model MyViewModel
<script type="text/javascript">
    var foo = @Html.Raw(Json.Encode(Model))
</script>
link|improve this answer
ok, can I access “Application” object? – Agzam May 31 '11 at 20:12
1  
@Agzam, where do you want to access this object? In javascript? That's bad. That would mean that your views would be pulling information from some parts. Views are not supposed to pull information. They are supposed to use information that is being passed to them as view model from the controller action. So feel free to define a view model, a controller action that will fetch the information from wherever it is stored (Application scope in your case) and pass this view model to the view. Then inside this view all you have to do is use the view model => that's all that views should do – Darin Dimitrov May 31 '11 at 20:14
Now if you want to pass some information stored in a javascript variable to your server you have couple of possibilities: AJAX, HTML forms, window.location.href, anchors, ... – Darin Dimitrov May 31 '11 at 20:16
feedback

You can't. ViewBag is a server-side thing, Javascript runs on client side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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