1
vote
3answers
41 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"
Inherits="System.Web.Mvc.ViewPage<Mini …
0
votes
3answers
36 views
Equivalent for ViewData from ASP.NET MVC for ASP.NET?
Hi! Is there an equivalent for the ViewData/ TempData object in ASP.NET MVC for ASP.NET?
What I wanna do is to keep a Session item only alive for one request.
Thanks in advance!
…
1
vote
2answers
128 views
Return multiple views to one ActionResult with ASP.NET MVC
What I want to achieve essentially is:
Items assigned to me
Item 1 assigned to me
Item 2 assigned to me
Item 3 assigned to me
All open items
Item 1 open to everyone
Item 2 open …
0
votes
1answer
38 views
Keeping track of loaded scripts per page using ViewData
Hi all,
I'm currently trying to find a good way to load my javascript files only when I need them. In order to do this, I created several HtmlHelpers for faceboxlinks, datepickerf …
0
votes
2answers
35 views
Is it acceptable to place view logic in a strongly typed view-data class?
Say you've got a view which requires some piece of data which requires some calculation, but no outside dependances. (For example, an enumerable string listing of the past 5 years. …
0
votes
1answer
38 views
ViewData in ActionFilterAttribute - Object reference not set to an instance of an object.
Hello all,
I've been trying to load masterpage content from database (based on a "TargetCode" in the querystring), using ActionFilterAttribute. However, I'm having problem setting …
0
votes
2answers
86 views
Maintaining ViewData between RenderAction calls
I'm rendering a common Log-In form using Html.RenderAction, on every page of my site.
If the user enters their details into the text-box and clicks 'Submit', it does a POST to a c …
0
votes
1answer
28 views
How to Preserve Value of JQuery Search in ASP.Net MVC
I have an MVC view where I have a search box. On keyup, I perform a JQuery search and render the results to a div>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent …
2
votes
2answers
171 views
ASP.NET MVC - How to pass an Array to the view?
Hello there,
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 l …
0
votes
1answer
31 views
Can anyone tell me if and why I should void using ViewData in ASP.Net MVC?
Hi Guys
This has probably come before and is probably very subjective. I have been tols to avoid using ViewData and use a FromViewModel class to pass informaiton to the view iste …
1
vote
3answers
69 views
keep viewdata on RedirectToAction
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult CreateUser([Bind(Exclude = "Id")] User user)
{
...
db.SubmitChanges();
ViewData["info"] = "The account has …
1
vote
3answers
548 views
Strongly typed master pages polymorphism - nested masterpages ignore inherit attribute
I'm currently creating a CMS system and found that the following doesn't work.
I do have a work around that isn't exactly ideal and feels dirty. I'm cool with it for now and not r …
6
votes
4answers
562 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 t …
0
votes
3answers
890 views
There is no ViewData item with the key ‘Blah’ of type ‘IEnumerable<SelectListItem>’.
This error message is driving me nuts.
I'm getting it when using Html.ListBox and Html.DropDownList HtmlHelpers with ASP.NET MVC v1.0. Populating the lists works OK - I can view t …
2
votes
5answers
1k 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 an …
