**ViewBag** is a dynamic-type object in the ASP.NET MVC framework that can be used to send miscellaneous data from the controller to the view.
0
votes
1answer
20 views
Round MVC ViewBag variable to 2 decimal places
I have 2 different fields saved in a database as money : Balance & Amount. However when I try to display these on an mvc view, the Balance is already rounded to 2DP whilst the amount is being ...
1
vote
1answer
27 views
DropDownList From Objects MVC
Ok so I want make a DropDownList from my object list
here is my getting object method
public List<Category> GetCategoriesList()
{
BaseShopEntities context = new ...
3
votes
2answers
44 views
how to check the contents of a viewbag in razor
Is there any way to check viewbag content, what the viewbag has of data in the view.
my controller send possibly new data each time i click on button and send it with the same named viewbag.
here my ...
0
votes
3answers
32 views
How to use a ViewBag to create a dropdownlist?
Controller:
public ActionResult Filter()
{
ViewBag.Accounts = BusinessLayer.AccountManager.Instance.getUserAccounts(HttpContext.User.Identity.Name);
return View();
}
View:
...
0
votes
0answers
28 views
Dynamic Referring URL in ViewBag or ViewModel?
I am working on a wizard like section of an ASP.Net MVC website that allows the user to post data and redirect to the next page in either a forward or backwards direction. That is if the user clicks ...
1
vote
1answer
46 views
Clear ViewBag message in MVC3
I am having a registration form. After successful registration I have to set ViewBag.Msg in controller and displayed it on view. This time all the fields are clear and only
"You have registered ...
0
votes
1answer
59 views
MVC-4 Change ViewBag.Message on server side?
I am beginner in MVC coding.
When the application starts, the ViewBag.Message is: Choose a file to upload.
After a successful upload, it changes to: File uploaded successfully!
Is there a way I ...
0
votes
1answer
14 views
How to search ViewBag Json string
I would like to access ViewBag data from within client side code. This is what I've tried in my controller:
ViewBag.Tasks = new JavaScriptSerializer().Serialize(tasks);
In my view I would then put ...
1
vote
1answer
32 views
Can I use a ViewBag value to determine useable functions?
So I am currently using a ViewBag set in the login to determine if they can see admin only stuff. This is done this way because Roles.CreateRole, Membership.CreateUser and Roles.AddUserToRole is ...
0
votes
0answers
14 views
Passing Data to layout page
if (Membership.ValidateUser(model.UserName, model.Password))
{
string login = model.UserName;
string pass = model.Password;
var pharmacie = (from p in db.PHARMACIEs where ...
0
votes
2answers
39 views
How to use Razor EditorFor Helper to create a TextBox with a value in from ViewBag
I simply want a text box editor field to appear with a value in it that has been passed with a ViewBag for example if ViewBag.Savings contained '6':
I tried something like:
@Html.EditorFor(model ...
0
votes
1answer
88 views
MVC4 ViewBag or ViewModel or?
I need to send data in the form of a list for two different models in my database to a view in an MVC4 project.
Something like this:
Controller:
public ActionResult Index()
{
Entities db = new ...
0
votes
1answer
41 views
How to conditionally group or not group KendoUI grid based on Viewbag value - MVC4
I need to pass a column name or the value 'none' to my kendo grid to conditionally group it based on the value of a Viewbag element. When I pass the column name in it groups as expected. My issue is ...
0
votes
2answers
80 views
How to create a DropDownList from an encapsulated property from a dynamically created ViewBag?
Note: Variables names were changed to keep my code's purpose anonymous.
Task:
Create a SelectList that will show what was chosen (if anything was chosen), and will generate a list to choose from.
...
0
votes
4answers
105 views
Pass image from controller and display in a view using ViewBag in ASP.NET MVC 3
I guess it's something very straight forward but I can't find out how to do it. In my controller I have:
public ViewResult ShowForm()
{
ViewBag.Title = ...
1
vote
1answer
80 views
What is the best way to create dropdownlists in MVC 4?
I want to know,What is a best way to create dropdownlists in MVC 4?
With ViewBag or another approach?
0
votes
1answer
59 views
Pass ViewBag to _Layout in MVC?
In my Search controller I have:
public JsonResult Search(string term)
{
var termLower=term.ToLower();
var pictures=_PictureRepo.GetAll();
var productsWereSeached ...
0
votes
2answers
97 views
Access viewbag values from view (.cshtml)
Hi Can someone help me how to access viewbag values from my view (.cshtml)
Here is my sample
var appointments = new[,] { { "4/1/2013", "B'day" }, { "4/2/2013", "Appointment with abc" } };
...
1
vote
1answer
527 views
how to pass data from View to Controller using ajax get or post in mvc with parameters
I am trying to pass data from View to Controller Action Method using ajax as follows:-
I have Membership instance of user which I passed in from another controller to this view below using viewbag ...
0
votes
1answer
152 views
Call Static Method of a class from Razor View on jQuery link Click and also passing Strongly typed viewbag
I am trying to pass Strongly Typed ViewBag from Controller to View, then from View call a static method on jquery link click which uses the View bag property as paramater.
In Controller, I have
...
0
votes
1answer
61 views
Changing the ViewBag inside a Controller that is NOT a child action, and retrieving it in the View context
Our application has a global Controller that all other Controllers inherit from; from within, in the OnResultExecuting override, I access an item (something obtained by accessing the Session, the ...
1
vote
2answers
91 views
Access ViewBag in JS file - Asp.net MVC
I have one Viewbag. I have fill that viewbag value from server side in Action result method. I need to access this Viewbag value in Js file. I have access this Viewbag in *.cshl page properly. Here ...
1
vote
0answers
250 views
DropDownList SelectList in ViewBag or View Model?
Do most developers put their SelectList objects in the stongly typed view model or in ViewBag?
Initially I used the view model as much as possible but now it doesn't make sense to store some stuff in ...
4
votes
2answers
97 views
Effectively avoiding ViewBag in ASP.NET MVC
How do you deal with avoiding ViewBag due to its risk of error with being dynamic but also avoid having to populate a new ViewModel and pass it back to the view each time. For instance, I don't want ...
1
vote
2answers
63 views
Why not to use ViewBag heavily?
What if i use too many ViewBag in MVC3 page? What extreme problems will be there if i continue use them heavily. In less words, what are the disadvantages of ViewBag and what is the alternate for it?
0
votes
1answer
60 views
Extension methods don't work on properties of a model instance passed via ViewBag
I have the following string extension method:
public static string Truncate(this string value, int maxLength = 75)
{
/* ... */
}
I want to use it in views, and it works properly with literal ...
0
votes
2answers
536 views
Passing list from MVC ViewBag to JavaScript
I have a list of users which I pass from my controller to my view using the view bag. Now I need to be able to pass the same list to the javascript on the page. I could reconstruct the list using a ...
3
votes
1answer
54 views
ViewBag behind the scenes
This is code from the Contoso University online example:
Controller:
[HttpGet]
public ActionResult Edit(int id)
{
Department department = departmentService.GetById(id);
...
0
votes
1answer
103 views
Viewbag not working in Explicit Partial View
I have a list view And i want to add a create partial to the page.
@model IEnumerable <blah.Domain.Entities.blah>
@Html.Partial("_Quickblah", new blah.Domain.Entities.blah());
public ...
2
votes
1answer
404 views
Accessing Viewbag data in rendered Partial View
The question might be a likely duplicate of
Can't access ViewBag in a partial view in ASP.NET MVC3
but it does not seem to categorically negate the possibility.
The issue is to Access ViewBag ...
0
votes
0answers
69 views
MVC ViewBag with url removes all the symbols when view has loaded
I'm trying to display/return a url using a viewbag. I get this on the Action as the value of the ViewBag:
http:\\www.mysite.com\\images\\logo.jpg
But whenever the view gets loaded all the slash ...
0
votes
3answers
68 views
Using ViewBag in a switch statement
Here is the code in my controller:
public ActionResult MyMethod(string widgetId)
{
ViewBag.Widget = widgetId;
ViewData["widget"] = widgetId;
return View();
}
And ...
1
vote
4answers
592 views
Pass Value from View To Controller in Asp.net MVC
I am trying to pass a message to another view (actually same controller) I can do it well but there is a problem for me..
I am new on web and it doesnt seem good ..
and here my c# code
if ...
1
vote
1answer
149 views
Jquery TagIt issue using ViewBag as datasource plugin
I want to bind data to tag it with ViewBag and unfortunately it does not work.
So, here is my controller:
public ActionResult ArticleEdit(Guid id)
{
ViewBag.Tags = db.Tags.Select(tag ...
0
votes
4answers
440 views
How ViewBag in ASP.NET MVC works
How does the ASP.NET MVC's ViewBag works? MSDN says it is just an Object, which intrigues me, how does "Magic" properties such as ViewBag.Foo and magic strings ViewBag["Hello"] actually work?
Also, ...
2
votes
1answer
205 views
MVC3 RenderPartial and the ViewBag
I'll try to keep this brief:
In the view
@Html.RenderPartial("myview", Model.SubModel,
new ViewDataDictionary()
{
{ "thing", Model.Thing }
})
In the myview we see that ...
1
vote
1answer
287 views
ViewBag RuntimeBinderException (MVC 4, ASPX)
I started up a Default MVC 4 project using the ASPX engine (not Razor), and everything works fine.
I can use
<% Model.Name %>
and
<% Model.Rating %>
for book ratings (instead of ...
1
vote
2answers
464 views
Razor MVC 3, Dropdownlist in ViewBag - Help understanding this piece of code
I'm new to MVC and I'm having trouble understanding a piece of code.
I created a new controller and with it all the CRUD methods and view - auto-generated by visual studio - and I could not understand ...
1
vote
2answers
139 views
Do you always have to set ViewBag variables in order to access data from the controller
I have a controller like this:
public ActionResult Index()
{
ViewBag.Title = "Index";
ViewBag.LoggedIn = TheUser.CheckStatus();
return View();
...
0
votes
1answer
215 views
ViewBag select lists datetime to date
In my controller -
ViewBag.DatesEnum = new SelectList(_db.blah.Where(w => w.Active == true).AsEnumerable(), "ID", "Date");
In view -
@Html.DropDownListFor(m => m.blahDate, ...
1
vote
0answers
32 views
Razorpad examples and tutorials
Can some one point me to some good tutorials on using Razorpad(http://docs.razorpad.net/index.html)? How to specify a _layout.cshtml, @model, helpers such as @Url.Content, @RenderBody(), @ViewBag, ...
2
votes
4answers
70 views
How do I pass an entire model from my Index View to a completely different controller?
Here's the relevant part of my Index view (Index.cshtml):
@foreach (var item in Model) {
<li>
@Html.ActionLink(item.name, "Index", "Filler", new { cap = item }, null)
...
0
votes
1answer
129 views
Drop down list fails to bind/display selected model value when bound via Viewbag
I have the following code in the controller:
ViewBag.CategoryName = new SelectList(catList, "key", "value");
where catList is a Dictionary where key is of type string and value is of type string. ...
0
votes
1answer
361 views
convert string to double decimal point needs to be a point
I have been looking around here and I have found this solution:
ViewBag.lon = double.Parse(parts[1], CultureInfo.InvariantCulture);
this is doing the trick... partially... When I put this value in ...
3
votes
2answers
391 views
ViewBag.Title value overrides Model.Title for ASP.NET MVC Editor Template
When I set ViewBag.Title at the top of a Razor template, the Model.Title editor template text box is populated using the value of ViewBag.Title instead of the expected Model.Title value. Calling ...
0
votes
1answer
176 views
ViewBag multiple SelectListItems
Getting some very annoying behaviour from my MVC3 app. So I've got a model with 3 values:
[DisplayName("Airlines ")]
[StringLength(2, ErrorMessage = "Airline codes can only be 2 characters in ...
0
votes
1answer
270 views
Check from JQuery if value exists in ViewBag
I trying to check if value in ViewBag exists or not from JQuery :
if("<%: ViewBag.isSearchEnabled %>" != null && "<%: ViewBag.isSearchEnabled %>" != "True")
{
...
1
vote
1answer
69 views
Configuring release notes on ASP.NET MVC & Razor
I'm trying to set up our build number and release notes on ASP.NET MVC with Razor--it seems like there is some functionality built in, because this is already in the main layout page in the header:
...
1
vote
1answer
931 views
Update ViewBag with jQuery and rendering results
I have an MVC3 application which uses ViewBag variables to dynamically fetch data from database and dynamically generate the interface.
I am using jQuery to call action method to insert some values ...
3
votes
1answer
783 views
ViewModels or ViewBag?
I'm fairly new to MVC4, EF5 and ASP.Net, and I don't seem to be able to find a good answer anywhere.
Basically, Should everything be done through the viewmodel or is it Ok to also incorporate ...






