The viewbag tag has no wiki summary.
34
votes
5answers
12k views
What's the difference between ViewData and ViewBag?
I saw the ViewBag in MVC 3. How's that different than ViewData in MVC 2?
13
votes
2answers
6k views
ViewBag vs ViewData performance difference in MVC?
I know that ViewData and ViewBag both use the same backing data and that neither are as good as using strongly typed models in most cases. However when choosing between the two is the dynamic nature ...
12
votes
1answer
2k views
Is using ViewBag in MVC bad?
It seem like mvc 3 team decided to bring in a feature for dynamic data exchange between a controller and a view called the viewbag but it is A good thing against the strongly typed view we all know ...
7
votes
1answer
7k views
MVC 3 - The name 'ViewBag' does not exist in the current context
I am trying to use ViewBag in my application, I have all of the recent dlls, the latest version of MVC 3, but yet I am still getting the Error: "The name 'ViewBag' does not exist in the current ...
5
votes
2answers
181 views
Heavy use of ViewBag
I make heavy use of the ViewBag in my MVC application, is this considered bad practice? I'm unsure as to whether to spend time creating ViewModels (however I thought that was more suited to MVVM ...
5
votes
5answers
481 views
c# mvc model vs viewbag
Suppose you have a list of People A and a list of People B in a page. And these two are seperate classes in L2S, representing two different tables. Therefore, you cannot pass a single model as ...
5
votes
5answers
7k views
Modifying MVC 3 ViewBag in a partial view does not persist to the _Layout.cshtml
I am using MVC 3 with the Razor view engine. I want to set some values in the ViewBag inside a Partial View and want retrieve those values in my _Layout.cshtml. For example, when you setup a default ...
4
votes
6answers
1k views
Alternative to ViewBag.Title in ASP.NET MVC 3
By default the new project template for ASP.NET MVC 3 adds the following to the default layout (masterpage in razor):
<title>@ViewBag.Title</title>
The view must then contain the ...
4
votes
3answers
3k views
MVC: Iterating a Viewbag array in javascript
The goal is to get the data from the ViewBag.Array to a Javascript array. The data is calculated in the controller so I cannot fetch it straight from the database. I need the data to draw a chart with ...
4
votes
4answers
1k views
ViewBag.ViewData is null, but possible to expand in debugger?
Just came across an interesting effect while debugging a View. The scenario is easy to reproduce - I have a breakpoint in a View, in the Watch window I add ViewBag.ViewData and the value is null. ...
3
votes
2answers
95 views
Storing an Anonymous Object in ViewBag
This is probably a silly question, but I am trying to stuff an anonymous object in ViewBag like so:
ViewBag.Stuff = new { Name = "Test", Email = "user@domain.com" };
and access it from a View like ...
3
votes
2answers
135 views
MVC3 dropdown list that displays mutliple properties per item
I want to have a dropdownlist in my view that displays a patient's ID, First Name, and Last Name. With the code below, it displays each patient's First Name. How can I pass all three properties into ...
3
votes
1answer
205 views
Strange behaviour when loading razor view from custom VirtualPathProvider (ASHX Source)
I get some strange behaviour when I load data via my custom VirtualPathProvider.
It might be important to mention, that I am trying to use this view as a layout.
public class MyVirtualPathProvider : ...
3
votes
2answers
4k views
Store a value in ViewBag from javascript
How can I store a value in the ViewBag accessing it from javascript?
3
votes
2answers
718 views
Why can Razor not see ViewBag, Url.Content, etc. when the layout page is outside ~/Views/Shared?
I'm working on a CSS framework that I can drop in to other projects as a NuGet package.
To keep things clean, the entire framework - views, styles, images, and master pages / layout pages - is ...
3
votes
1answer
187 views
Is there a way to access a .NET MVC ViewBag's properties using a string key?
I have a value that I've put in the ViewBag:
ViewBag.SomeKey = value;
In my view I have the key stored as a String.
String theKey = "SomeKey";
Is there a way to access my value from the Viewbag ...
2
votes
2answers
113 views
ViewBag/ViewData Lifecycle
I have seen many posts about when to use ViewBag/ViewData vs ViewModel but i have not been able to find an explanation of the lifecycle of the ViewBag.
For example, i have two Action methods in one ...
2
votes
1answer
110 views
ViewBag oddity in creating a MultiSelectList
I have spent a lot of time scouring the various forums for help on MultiSelectLists in asp.net MVC3. Finally figured out how to solve my issue now I'm trying to cut down on my code and I've come ...
2
votes
1answer
72 views
Is there any Ready-to-use DynamicObject in C#?
I know viewbag is one of the ready-to-use DynamicObject, but if you are not in a view or controller, is there any other Ready-to-use DynamicObject except to write your own?
(btw, I found a sample of ...
2
votes
2answers
781 views
How do I render HTML from the Viewbag using MVC3 Razor
I am trying to pass a form element into an MVC3 view by using the Viewbag and simply write the HTML to the page ...
In controller:
ViewBag.myData = "<input type=""hidden"" name=""example"" ...
2
votes
2answers
69 views
How should we pass a data to a view in a big ASP.NET MVC web site
First of all, I have been a php programmer for a long time and I am a mvc programmer newly. I did a few minor web sites that each have one or two controller at most. But I've started a website that ...
2
votes
1answer
318 views
Lifetime of ViewBag elements in ASP.net MVC3
When will the values of the ViewBag be flushed or cleared ?
2
votes
1answer
946 views
How do I access a ViewBag.Title after it has been set by the underlying View?
Here's the thing. I have a MVC Action, and on that action, I have applied a custom ActionFilterAttribute to get the deserialization working. Now, what I want to do, is set some header based on the ...
2
votes
3answers
431 views
C# .Net 4.0 Creating a class like ASP.NET MVC 3 ViewBag?
I have a situation where I would like to do something simular to what was done with the ASP.NET MVC 3 ViewBag object where properties are created at runtime? Or is it at compile time?
Anyway I was ...
2
votes
2answers
3k views
Can't access ViewBag in a partial view in ASP.NET MVC3
I have a controller calling a view. In the view there is a partialview called be @Html.Partial("ViewName", model). This works fine.
But in the controller I wish to put something in the viewbag what ...
2
votes
1answer
998 views
ASP.NET MVC 3 Model Binding - ViewBag.Title clash with input of id=“Title”
There seems to be an issue with the ViewBag dynamic properties. Lets say I have:
@{
ViewBag.Title = @Model.CourseName;
}
And then in a form on the page I have:
@Html.TextBox("Title", null, ...
2
votes
2answers
491 views
Why does an MVC view need to exist in the View directory to work?
I have been writing a cms with MVC being used as the main engine for generating the pages.
I am going well, but wanted the ability to create a unique razor template per site and possibly per view if ...
1
vote
2answers
56 views
MVC3 putting a newline in ViewBag text
I have an MVC3 C#.Net web app. I am looping through a DataTable. Some rows are importing OK, some are not. I am wanting to send a list of errors back to the view in a list format. I am assigning ...
1
vote
1answer
71 views
Set default dropdown defalut value based on viewbag
I have a dropdown list that reloads the page when its selected value is changed. This works and renders as expected. The only problem is that the dropdown list goes back to the default value. How can ...
1
vote
1answer
71 views
MVC null ViewBag in JQuery
I have a ViewBag that has no value. I am not even defining the ViewBag.SelectVale
in my controller so I would expect it to be a null value.
When I do the following in JQuery but does not work:
...
1
vote
2answers
55 views
Trying to set value for ViewBag
Can someone tell me why this does not work?
I get the error No overload for method 'Write' takes 0 arguments. This happens right on the first line in the foreach where I set the ViewBag.InvoiceTotal.
...
1
vote
2answers
180 views
Create ViewBag properties based on strings
Is there any way to create and use dynamic properties for ViewBag, based on strings?
Something like
ViewBag.CreateProperty("MyProperty");
ViewBag.Property("MyProperty") = "Myvalue";
Thank you
1
vote
2answers
1k views
using viewbag with jquery - asp.net mvc 3
I have a ViewBag.IsLocal set to true in controller. I would like to use jquery to check the ViewBag value and display an alert.
Code:
if(@ViewBag.IsLocal == true)
{
alert("yeah");
}
I never get ...
1
vote
1answer
240 views
Read value from Web config,pass it to controller, put it in a viewbag and then read the values in View?
I have a simple requirement where I have 2 date values which I will be using in my view(hardcoded right now) to be read from Web config file.
I got some inputs saying these values have to be passed to ...
1
vote
1answer
363 views
Does a child action share the same ViewBag with its “parents” action?
I am confused with this:
I have an action ,say Parent ,and in the corresponding view file ,I have called a child action ,say Child ,both Parent and Child actions are in the same controller.
and I ...
1
vote
4answers
329 views
How can I show a viewbag as html?
OK, quite new to ASP.Net MVC, so I'm sorry if this is a silly question, but how do I go about showing the values of a ViewBag as HTML. For Example, if ViewBag.SomeMessage contains the following text:
...
1
vote
2answers
353 views
Why isn't my ViewBag setting available in my view?
I have the following code in my HomeController's Index action, and the code below it in my layout. When I call up the Home/Index view, the UserName property isn't set, but I know it is set in my ...
1
vote
2answers
468 views
Returning a list to strongly typed view using viewbag
I am trying to return a list of customers to a strongly typed view using the viewbag and am having some difficulties as im new to MVC and Razor, can anyone kindly offer any advice on the following ...
1
vote
1answer
439 views
How to pass a list of data between views in MVC 3.0?
I am building my first MVC app after following the Music Store tutorial and have ran into some problems when trying to pass data between strongly typed views.
I have two datatypes with their own ...
1
vote
3answers
155 views
Why would I want to put my objects in a bag?
I just saw an SO question about the System.Collections.ConcurrentBag<T> class, and I've seen the ViewBag property of the Controller in ASP.NET MVC. In my experience, I've learned that it's ...
0
votes
1answer
27 views
ViewBag - Object reference not found - MVC 3
Upon publishing my MVC 3 Web Application to my website I get an error stating an Object reference not set to an instance of an object.
The 'error' line is:
Line 2: ViewBag.Title = "Index";
This ...
0
votes
1answer
33 views
How to display additional readonly view data in Edit view MVC
I have a View that handles the Edit action for editing a weekly update on your weight and nutrition. Editing a singular model is all good. I am using EditorFor to create the fields.
My problem is ...
0
votes
0answers
62 views
Passing parameters to javascript from a MVC controller?
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:
...
0
votes
1answer
292 views
Checking to see if ViewBag has a property or not, to conditionally inject JavaScript
Consider this simple controller:
Porduct product = new Product(){
// Creating a product object;
};
try
{
productManager.SaveProduct(product);
return RedirectToAction("List");
}
catch ...
0
votes
1answer
184 views
How to hide ViewBag in asp.net MVC3 razor View
I am rendering a new view from some view(say mainView) by using Html.ActionLink("","",new{id=packageID})
and my controller action(ActionLink passing control to) look like
public ActionResult ...
0
votes
1answer
129 views
populating ViewBag with HTML
I have a controller with a method that is called when a button on my form is clicked.
It populates a variable in my viewbag (a string containing html) and then i try to display the contents of this ...
0
votes
2answers
96 views
Generic list not showing in ViewBag
I'm not able to assign generic list to ViewBag:
var m = from i in Enumerable.Range(0, 12)
let now = DateTime.Now.AddMonths(i)
select now.ToString("MMMM") + " " + now.Year.ToString();
...
0
votes
0answers
343 views
MVC 3/Razor - Access parent ViewBag after partial view AJAX postback
I have a view (actually it's a partial view) that contains a partial view:
@Html.Partial("_DisplayBidItem", @Model.Item)
In the parent view I also set a value in the ViewBag:
@ViewBag.Mode = ...
0
votes
2answers
149 views
MVC3 Passing data from controller to another controller
Passing small amount of data from one controller to another controller, do I use ViewBag? ViewData? or Session...etc... what is the right approach.
e.g. My First [Controller1]/[Action: Register] ...
0
votes
1answer
224 views
MVC Pass ViewBag to Controller
I have a Viewbag that is a list that I am passing from the Controller to the View.
The Viewbag is a list of 10 records in my case. Once in the view, if the user clicks on save, I like to pass the ...