Tagged Questions
The strongly-typed-view tag has no wiki summary.
14
votes
1answer
3k views
ASP.NET MVC Strongly Typed Partial View, gives could not load type error
I am attempting to create a strongly typed view with a "MVC View User Control" that is being rendered using Html.RenderPartial(). The top of my ascx file looks like this:
<%@ Control ...
6
votes
3answers
247 views
ASP.NET MVC 3.0 - Why strong-typing Model in a View, if static compilation is not happening?
I'm actively developing desktop applications, local and network services, some classic ASP.NET, etc., so I'm used to static compilation and static code analysis. Now that I'm (finally) learning ...
6
votes
1answer
157 views
Is rename refactoring working for somebody in strongly typed razor views?
I have a model that looks like this:
public class Person
{
public string PostalCode {get;set;}
}
Then I have a razor view
@model MvcApp1.Person
Your location is: @Model.PostalCode
When I ...
6
votes
3answers
5k views
ASP.NET MVC, strongly typed views, partial view parameters glitch
If i got view which inherits from:
System.Web.Mvc.ViewPage<Foo>
Where Foo has a property Bar with a type string
And view wants to render strongly typed partial view which inherits from:
...
5
votes
4answers
690 views
Asp.Net MVC - Strongly Typed View with Two Lists of Same Type
I have a View strongly typed to an Item class. In my controller I need to send two different List. Is there an easier way to do this other than creating a new class with two List.
What I am ...
3
votes
2answers
439 views
ASP.NET MVC3, why does dropdownlist rely on viewbag even in a strongly typed view
I'm new to MVC, so maybe this is a stupid question - I'm trying to get my head around strongly typed views in asp.net mvc. I'm working on version 3.
If I have a project with 2 models - say Person and ...
3
votes
2answers
289 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
3answers
1k views
Custom ViewModel with MVC 2 Strongly Typed HTML Helpers return null object on Create?
I am having a trouble while trying to create an entity with a custom view modeled create form. Below is my custom view model for Category Creation form.
public class CategoryFormViewModel
{
...
2
votes
1answer
93 views
How come internal members in my view model aren't accessible in the view?
I have some internal automatic properties in my view model but my strongly-typed view doesn't see them. Everything is in the same assembly, so why is this happening?
public class MyViewModel {
...
2
votes
2answers
143 views
T4MVC or MvcFutures for strongly typed links in views
I am trying to reduce/eliminate "magic strings" from my MVC3 project and was wondering which approach would be better:
use MvcFutures and do something like:
var title = "Create New Customer";
...
2
votes
2answers
669 views
Rendering one partial view in two different strongly typed views
I have a strongly typed Person view, that I want to render a partial in:
Person View (strongly typed as person)
<label for="name">Name</label>
<% ...
2
votes
4answers
284 views
ASP.NET MVC strongly typed view compilation error
This is a strange one. I changed something (not sure what) and now my app's view doesn't compile at runtime.
The view itself is strongly typed:
<%@ Page Language="C#"
...
2
votes
2answers
367 views
Should strongly typed partial views on one page in asp.net mvc-2 have one combined view model?
I have a question about asp.net mvc-2 strongly typed partial views, and view models.
I was just wondering if I can (or should) have two strongly typed partial views on one page, without implementing ...
2
votes
1answer
2k views
object Model types in MVC2 using strongly typed view pages problem
I have a new converted MVC2 project running against the MVC2 source code. I have done this conversation twice on the same solution.
I use strongly typed views on every page of the site and so far I ...
2
votes
4answers
276 views
Is right use strongly-typed partial views?
I'm developing a little application in ASP.NET MVC.
This app has a lot of "HTML pieces" that are used many times with a little variance.
For this pieces, I'm using strongly-typed partial views.
My ...
2
votes
3answers
200 views
When would you not use a strongly-typed ASP.NET MVC view?
Assuming that an ASP.NET MVC View is going to show data, is there any scenario where you would not want to use a strongly-typed view?
1
vote
1answer
48 views
What is the best way to pass strongly typed variables to the view
Is there any way that I can pass multiple variables to a view so I can work with the type members and methods?
I want to be more safe with my coding? ViewData will not pass strongly typed.
ASP.net ...
1
vote
4answers
119 views
String Formatting in C# for Strongly typed view
I want to know how can I convert a strong typed view Price field in to 2 digit specifier like i have got a money field in my db which converts for instance 15 into 15.0000 , i juts want to display ...
1
vote
1answer
65 views
Create strongly typed view from code and load it
I have a strongly typed viewpage that I created that looks like this:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Models.Reports.OverallResultsViewModel>" %>
I'm trying to ...
1
vote
4answers
785 views
ASP.net MVC, Querystring, routes and default binder, how do I combine this?
Hi!
I have a ASP.NET MVC site that uses strongly typed views. In my case a controller action could look like this :
public ActionResult List(MyStrongType data)
When submitting the page(view) the ...
1
vote
2answers
238 views
asp.net mvc - Update/pass objects with no association between controller and view
Essentially what I have is an entity class (Article) and one article may belong to n categories. This is where one would expect a field for the categories (say an ICollection) but the database is not ...
1
vote
2answers
163 views
mvc rebuild strongly typed view
is there any way to re-build a strongly typed view when the model class has new fields added?
At present I have not modified the initial generated view so deleting and re-creating is not a problem.
...
1
vote
1answer
197 views
Can't select View Content dropdown when adding view in MVC using Interfaces
I have my Model defined externally in two projects - a Core project and an Interface project.
I am opening the Add View dialogue from my controller, and selecting Create a strongly typed view.
In ...
1
vote
0answers
58 views
How can I use a prefix for the fields in my strongly typed View?
I have an EditProfile action in my PersonController, that finds a Person object by ID and does return View(person). The EditProfile view has a bunch of fields that should be filled in with the ...
1
vote
3answers
245 views
Strongly typed views in NHaml?
I have a strongly typed view and want to use it in an NHaml page.
With the WebForms engine I would describe the ViewData type in the <%@ Page%> directive or in the codebehind file.
How would ...
1
vote
2answers
1k views
ASP.NET MVC Strongly Typed View for class that has a collection of objects
Consider this scenario:
class Book
{
int id;
List<Category> categories;
}
class Category
{
int id;
string name;
}
I have a strongly typed view for the class Book. When the ...
1
vote
1answer
133 views
ASP.NET MVC Newbie: why isn't my model available when creating a strongly-typed view?
I'm starting with ASP.NET MVC, and working with NerdDinner as reference. I did the following:
Created a new project
Added a couple of tables
Created LINQ to SQL for them
Created a new controller
...
1
vote
1answer
406 views
Name 'Model' is not declared in a strongly typed view - ASPNET MVC
As of recent, a few of my strongly typed views randomly (w/ zero code changes) decided that 'Model' was not a valid item ... again - ZERO code changes. I simply opened my view and now it's broken ... ...
1
vote
4answers
9k views
How to bind an Html.DropDownList without ViewData (Strongly-Typed View)
I can't seem to find a good blog post that shows how to bind a model to a view without the magic strings "ViewData" (using a strongly-typed view is the approach I'm trying to take)
Does anyone know ...
1
vote
2answers
140 views
VB Syntax to declare a single model in MVC (to leverage strongly typed views)
I'm trying to avoid the use of magic strings as much as I can, but I can't find the correct syntax for VB to bind a single model like is shown in this c# example.
Can anyone point me in the right ...
0
votes
1answer
46 views
Asp.NET MVC 3 - generic type list in a strongly typed view
I would like to be able to do a strongly typed view/user control, where the type is a list of generic types. Like so:
<%@ Control Language="C#" ...
0
votes
2answers
44 views
ASP.NET MVC Strongly Typed HTML Helpers
OK, this is the first time I've used Lambda expressions, and I've been reading websites up the yin-yang and just wanted to clarify that I've got my understanding right - probably not! Please be gentle ...
0
votes
0answers
172 views
MEF and MVC 3 - how to load embedded views dynamically from mef container?
I'm building an MVC 3 application where MEF is used. The main idea is to have plug-in mechanism where models, controllers and views are loaded dynamically during runtime from mef container.
Each ...
0
votes
0answers
26 views
Error adding new strongly typed view in MVC 3.0 (Column attribute ambiguous)
When I try to add new strongly typed view for my MVC 3.0 project it says this error. I tried several ways (Adding List view,details view ,Razor/aspx ) but same error happens.
0
votes
2answers
129 views
Polymorphism and Strongly-typed Views in ASP.NET MVC
I have a problem where I have two forms that are identical except that the required fields are different. For example, let's say the forms have the same fields: X, Y, and Z. In Form #1, X is ...
0
votes
1answer
60 views
How to display edit and details on a single view in mvc
I am looking for a partially edit my model - the scenario is i want to display 5 fields and ,2 fields should be editable, and when post happens it should update the editable fields, Strongly type view ...
0
votes
1answer
145 views
Missing model class when adding a view in ASP.NET MVC 3
In my ASP.NET MVC 3 project i have a reference to my DomainModel project.
The problem occurs when i try to create a strongly-typed view. In the model class list my models from the DomainModel ...
0
votes
1answer
104 views
ASP.net MVC2 Passing data between strongly typed views
I have the following MVC2 view that is strongly typed with a viewmodel, the viewmodel contains a list of values from one db table, i need to display a single value from a second table in the view, ...
0
votes
1answer
24 views
Problem with defaul binder (probably simple)
I am building a ASP.NET MVC 2 application and have a controller that contains the following actions :
public ActionResult Edit()
{
...
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult ...
0
votes
1answer
419 views
How to create a jquery popup bubble for strongly typed views in asp.net mvc
Hi I am trying to create a jquery popup bubble for items created in a strongly typed view from a database in asp.net
I have found a number of examples but nothing that really helps. Any help would be ...
0
votes
1answer
81 views
MVC and routing with strong typed views?
Hi,
Say that I got a action that returns to a strong typed view. This type is also the inparameter to the action. To set the current page number(for a list on the page) I need to set Model.ALS.P (our ...
0
votes
1answer
167 views
Asp MVC 2: Typed Editor Template
(I reference this tutorial in this text)
I want to use the Html.EditorFor (or Html.Editor) helpers.
If a UserControl needs additional data it is passed via
...EditorFor(model => model.Album, new ...
0
votes
2answers
95 views
Where should non-view-model objects be prepared for the Asp.net MVC view
I need some clear mind thinking to provide some good suggestion how this kind of thing should be done to its best.
Problem
I'm building an Asp.net MVC application. Most of my views have a toolbar at ...
0
votes
1answer
129 views
ASP.Net MVC, strongly typed view with DateTime not accepted?
I wish to create a view like
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.DateTime?>" %>
but I get an error saying that DateTime must be a reference type ...
0
votes
2answers
806 views
Pass data to Master Page with ASP.NET MVC
I have a hybrid ASP.NET WebForms/MVC project. In my Master Page, I have a "menu" User Control and a "footer" User Control. Anyways. I need to pass some data (2 strings) to my "menu" User Control on ...
0
votes
1answer
334 views
Can you use MVC 2 Strongly Typed Helpers in Partial View?
I'm trying to use the new strongly typed helpers. I've inherited the Model in my Control:
Inherits="System.Web.Mvc.ViewUserControl"
but intellisense isn't exposing the model and the page isn't happy ...
0
votes
3answers
210 views
Best way to save data on a strongly-typed view when not all fields are loaded
Let's say I have an edit view that is strongly-typed to a table called "MyData". The view has multiple tabs, each with several different fields from the table. For performance, the data is only loaded ...
0
votes
2answers
722 views
ASP.NET MVC List population in strongly typed views
A bit of background:
I'm building an MVC app to store golf course data and have created a Create view
page for the courses. This contains a partial view of a scorecard that I am going to use for ...
0
votes
1answer
360 views
ASP.NET StrongTyped Controller-Action View<TView,TModel>(TModel Data)
I'm using Asp.net MVC 1 and I would really like my controller actions to use StronglyTyped View(data) calls that enforce type checking at compile time and still let me use aspx pages under the default ...
0
votes
1answer
195 views
How do I bind a textbox to a Model parameter in a Strongly Typed View in Asp.Net MVC?
The only way I've seen this done in the tutorials I've looked at, they say to create a new .ascx and choose the option "create" for View Content.
I want to be able to customize mine more with ...