Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
8k views

ASP.NET MVC - Pass Additional ViewData to a Strongly-Typed Partial View

I have a strongly-typed Partial View that takes a ProductImage and when it is rendered I would also like to provide it with some additional ViewData which I create dynamically in the containing page. ...
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 ...
9
votes
4answers
1k views

How do you use usercontrols in asp.net mvc that display an “island” of data?

I am trying to find out how to use usercontrols in asp.net mvc. I know how to add a usercontrol to a view and how to pass data to it. What I haven't been able to figure out is how do you do this ...
8
votes
4answers
3k views

How to set ViewBag properties for all Views without using a base class for Controllers?

In the past I've stuck common properties, such as the current user, onto ViewData/ViewBag in a global fashion by having all Controllers inherit from a common base controller. This allowed my to use ...
8
votes
4answers
5k views

MVC User Controls + ViewData

Hi im new to MVC and I've fished around with no luck on how to build MVC User Controls that have ViewData returned to them. I was hoping someone would post a step by step solution on how to approach ...
7
votes
4answers
280 views

When is it right to use ViewData instead of ViewModels?

Assuming you wanted to develop your Controllers so that you use a ViewModel to contain data for the Views you render, should all data be contained within the ViewModel? What conditions would it be ok ...
7
votes
3answers
8k views

There is no ViewData item of type 'IEnumerable<SelectListItem>' that has the key 'xxx'

There are a couple of posts about this on Stack Overflow but none with an answer that seem to fix the problem in my current situation. I have a page with a table in it, each row has a number of text ...
7
votes
3answers
2k views

How do you persist querystring values in asp.net mvc?

What is a good way to persist querystring values in asp.net mvc? If I have a url: /questions?page=2&sort=newest&items=50&showcomments=1&search=abcd On paging links I want to keep ...
6
votes
1answer
621 views

How do I pass multiple models to partial views in ASP.NET MVC

I've been reading Scott Guthrie's post on Passing ViewData from Controllers to Views, but I don't think the lesson is clicking for my specific situation. (Note: Due to client proprietary ...
6
votes
1answer
2k views

ASP.NET MVC - Pass Json String to View using ViewData

I'm trying to pass Json to my View using ViewData Controller ViewData("JsonRegionList") = Json(RegionService.GetActiveRegions()) view $("input#UserRegion").autocomplete({ ...
6
votes
3answers
1k views

keep viewdata on RedirectToAction

[AcceptVerbs(HttpVerbs.Post)] public ActionResult CreateUser([Bind(Exclude = "Id")] User user) { ... db.SubmitChanges(); ViewData["info"] = "The account has been created."; ...
6
votes
4answers
361 views

Where should I put my asp.net-mvc strongly typed viewdata?

I've been nesting my viewdata classes inside my controllers and, as their numbers grow, I'm starting to ask myself if this is a good idea. Then again, something about polluting the /Views and ...
6
votes
5answers
4k views

LINQ Anonymous Types + MVC Views Help

I've seen many questions about this, but i've never really got the answer that I need. I'm converting a fairly large web application from Web Forms to MVC and after a while I encountred a problem ...
5
votes
6answers
5k views

passing viewdata to asp.net mvc masterpages

I'm trying to pass ViewData to my asp.net mvc masterpage for an mvc usercontrol that I keep on a masterpage. For example, I created a dropdownlist of names as an mvc usercontrol and I put that in my ...
5
votes
2answers
1k views

mvc no codebehind strongly typed viewdata headers not working

I add that to my header <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> and am able to access ViewData and all its internals as well as ...
4
votes
2answers
3k views

ASP.NET MVC 3 RC - Razor “View” Property

Just mucking around with Razor in the ASP.NET MVC 3 RC released today. Now, we have a concept of a "Layout Page", which i presume is the replacement of the "View Master" in the ASPX view engine. But ...
4
votes
1answer
2k views

Storing data in HttpContext.Current.Items vs ViewData

When is it appropriate to store data in HttpContext.Current.Items[...] vs storing data in ViewData[...]? I'm trying to figure out the best practices for storing data in this collection and I'm not ...
4
votes
2answers
3k views

ASP.NET MVC - How to pass an Array to the view?

I'm struggling myself here, to find a easy way to pass an array from the controller to the view on ASP.NET MVC framework. so in my controller I would have something like: public class HomeController ...
4
votes
4answers
1k views

C# Centralizing repeating VIewData in MVC

When a user log in into my application i want to show his name throughout the whole application. I am using the asp.net MVC framework. But what i don't want is that is have to put in every controller ...
4
votes
3answers
820 views

Thunderdome MVC- Why one-model-in in MVC?

When Jeremy & Chad posted about their FubuMvc project, one of the differentiators they mentioned was their "Thunderdome Principal": The “Thunderdome Principle” – All Controller methods take ...
4
votes
2answers
5k views

Asp.net MVC User Control ViewData

When a controller renders a view based on a model you can get the properties from the ViewData collection using the indexer (ie. ViewData["Property"]). However, I have a shared user control that I ...
3
votes
2answers
204 views

How do I get ViewData inside a form to display correctly?

<%:ViewData["galleryId"]%> <% using (Html.BeginForm( "FinishEdit" , "GalleryManager" , FormMethod.Post , new { enctype = ...
3
votes
5answers
115 views

Should ViewData never be used?

I have tried to check the best practices for using asp.net mvc and quite a few say that we should never use ViewData. I have read this post and it seems like it from that. One reason that I can think ...
3
votes
1answer
188 views

Why would =ViewData[“”] show a string but evaluating it for the same string fail?

//CHECK IF WE SHOULD SHOW THE PASSWORD HINT OR NOT Setting passwordhints; using (var db = new dbDataContext()) { passwordhints = (from c in db.Settings where c.Name == ...
3
votes
2answers
288 views

ASP.NET MVC strongly typed views or not?

What is the best practice - to use only strongly typed views without any parameters, that passes through the ViewData dictionary, or it's a not bad idea to use something like this in a view: <%: ...
3
votes
5answers
658 views

ASP.net mvc Common data for footer

So, I have a footer which will appear on every page of my web application I need it to render dynamic data so.... this means that every controller action needs to return viewData which contains this ...
2
votes
2answers
66 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
2answers
1k views

Html.HiddenFor value property not getting set

I could have used @Html.HiddenFor(x=> ViewData["crn"]) but, I get, <input id="ViewData_crn_" name="ViewData[crn]" type="hidden" value="500" /> To somehow circumvent that ...
2
votes
1answer
130 views

Javascript error with Viewdata

I have a link that goes to a controller that renders a page that includes this javascript. $(document).ready(function () { var creditCards = '<%:(ViewData["CreditCards"])%>'; ...
2
votes
1answer
247 views

How to read List<> passed to View via ViewData in ASP.Net MVC 2

I'm pretty new to ASP.Net MVC. I've created a model that fills a List<> with multiple custom objects called "Result". Then, in my controller, I get this List and put it into the ViewData. I am ...
2
votes
3answers
149 views

Accessing a database object (and other important data) in the View

I know it's a bad practice to use database in the view. However, I'm also passing the User object and I wonder how I can make it easy to use. I love the way it works in Ruby On Rails. You just create ...
2
votes
1answer
270 views

How to pass information from controller to viewdata? asp net mvc c#

I am building a pagination my mvc project and have follew problem. I did everything for pagination and now need just pass a page information to view data in view. I have a user control Pagination: ...
2
votes
1answer
208 views

The new ViewModel doesn't obsolete the ViewModel pattern in ASP.NET MVC 3, right?

In my understanding, the ViewModel pattern was designed to pass all the relevant data to View because 1) the view shouldn't perform any data retrieval or application logic and 2) it enables ...
2
votes
2answers
106 views

ASP.NET MVC: Passing instance variables to the View like in Ruby

Yes, I know that in ASP.NET MVC you have to use ViewModels. But I'm tired of writing countless amounts of ViewModel classes. Besides I'd like to just pass the Validation model to the view, instead of ...
2
votes
5answers
832 views

ASP.NET MVC ViewData and view model best practices

The initial situation is that I map my domain model into a presentation model. I have to display an update/create formular with textboxes and a dropdownlist. Should the viewmodel contain a list for ...
2
votes
5answers
2k views

Why Html.DropDownListFor requires extra cast?

In my controller I create a list of SelectListItems and store this in the ViewData. When I read the ViewData in my View it gives me an error about incorrect types. If I manually cast the types it ...
2
votes
2answers
980 views

ASP.NET MVC Model vs ViewData For Select Lists

I have an ASP.NET MVC application with quite a few drop-down lists and multi-select lists. Essentially, a lot of lists of options. My question is; is it better to pass these lists to the view as part ...
2
votes
1answer
203 views

Adding to ViewData[] collection from AuthorizeAttribute Extension

I wrote an extension class to customize my AuthorizeAttribute for my action methods and I'd like to be able to inject messages into my view when a certain condition is met. I"m using the below code ...
2
votes
1answer
3k views

Argh! Why does System.Web.Mvc.HandleErrorInfo get passed to my views?

I'm experiencing a rather frustrating problem. My MVC site runs fine for the most part, but randomly throws an error (which shows a friendly error to the user). When I check the logs, this is what I ...
2
votes
3answers
72 views

Why i can't call the Model and ViewData, and Html in the strong typed page?

I created a new strong typed View ,something like this: <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
2
votes
3answers
3k views

Need simple example of how to populate javascript array from Viewdata list

There may be a simpler way of doing this and I am all ears if there is. My situation is I have a dropdownlist on a form which I successfully populate with text and values. I also need to have ...
1
vote
2answers
32 views

Using ViewData to pass string from Controller to View in ASP.NET MVC3

I am trying to pass a random string from my Controller to the View. Here is my Controller code: [HttpPost] public ActionResult DisplayForm(UserView user) { //some data processing ...
1
vote
0answers
73 views

ViewData and javascript - class name not being read

For some reason I'm having trouble assigning viewdata to some javascript. I have the following code: @{ string item = ".playerItem_" + ViewData["itemType"]; } <script type="text/javascript"> ...
1
vote
2answers
69 views

ViewData[“key”] not available when using RedirectToRoute(“Route”) in controller

I am working over my first application over MVC3 and still kind of a newbie in it. Problem is am putting some message in my controller in ViewData dictionary to be shown over the viewpage, but as far ...
1
vote
2answers
159 views

How to perform enable/disbale or hide/unhide in asp.net mvc 2

I am passing some viewdata and view bag to the view through controller , below is the snippet of the code: IProductRepository prodResp = new ProductRepository(); Product getGarages = ...
1
vote
1answer
78 views

How to display list of names present in viewdata in asp.net

I have a list of names in viewdata, but am not able to display it in view page <body> <%= ViewData["names"].ToString() %> Thanks
1
vote
2answers
1k views

How to pass List of objects from view to controller action in asp.net mvc3

i have comprehensive search that returns several lists of objects. Each such list is made of objects containing additional lists. The search is very complex in terms of processor load. once i have ...
1
vote
2answers
758 views

ASP.NET MVC ViewData if statement

I use the following in my View to check if a query exists like domain.com/?query=moo if (!string.IsNullOrEmpty(Request.QueryString["query"])) { my code } But now need to change it so that it checks ...
1
vote
4answers
166 views

Alternatives to ViewData?

I'm pretty new to MVC, ASP.net, and, well, server-side scripting in general. I was watching a tutorial video at www.asp.net/mvc where the person was explaining a template. He explained that the ...
1
vote
1answer
397 views

Passing data from controller to master page - based on currently logged in user

Using MVC2 Have a master-page that needs to hide certain menus if currently logged in user does not have correct flags set. Seems like a common problem. Found examples that require that all ...

1 2 3