Tagged Questions
The viewusercontrol tag has no wiki summary.
4
votes
1answer
2k views
ASP.Net MVC ViewUserControl with controller using MVC 1.0
Because of the confusion between all the info that is out there about mvc from all the preview releases and the one official release I am very confused how to deal with viewusercontrols.
So once and ...
4
votes
1answer
880 views
Can you create a strongly typed ASP.NET MVC ViewUserControl of type int or enum?
i wish to create a reusable ASP.NET MVC ViewUserControl which is strongly typed to an enumeration.
Can this be done? When i try it, it says that the strong type the ViewUserControl can accept, can ...
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 ...
2
votes
1answer
179 views
T4MVC does not support DisplayTemplates and EditorTemplates
I've noticed this when I used the following in my view:
<% Html.RenderPartial(MVC.Shared.Views.EditorTemplates.ClientOnDocuments); %>
The line above returns just the name of the view, so in ...
2
votes
1answer
540 views
How do I encapsulate form/post/validation[/redirect] in ViewUserControl in ASP.Net MVC 2
Short verion: need ViewUserControl (i.e., Login Form) to post to self and be able to redirect (i.e., on successful login), or return original View (i.e., Home/Index) with validation summary and not ...
2
votes
2answers
3k views
name 'html' nor name 'model' exist in current context in usercontrol MVC and C#
I am using Microsoft MVC and C#. I have a usercontrol (example.ascx) created and at the top I'm inheriting System.Web.MVC.ViewUserControl<PostTransferViewModel>
Now, while my model name is ...
2
votes
1answer
205 views
ASP.NET MVC - Contained User Controls
I want to be able to create ViewUserControls with their own controllers so all the logic is contained completely. Right now, I have to wire up the ViewUserControls with the main controller and if I ...
2
votes
3answers
105 views
asp.net mvc - Views and Controllers
How do controllers know which views to return? I thought it was by naming convention, but I have seen instances, for example in the Nerd Dinner application, where the names don't match. Where or how ...
1
vote
1answer
1k views
Asp.Net MVC2 Clientside Validation problem with controls with prefixes
The problem is: when I put 2 controls of the same type on a page I need to specify different prefixes for binding. In this case the validation rules generated right after the form are incorrect. So ...
1
vote
2answers
737 views
How to pass data from view to UserControl in ASP.NET MVC?
Say I want to do the simplest of the data passing as follows :
<% For i = 0 To 10%>
<%Html.RenderPartial("MyUserControl")%>
<% Next%>
What I want to do is to pass the variable ...
1
vote
1answer
699 views
Rendering a derived partial view with Html.RenderPartial
Calling Html.RenderPartial("~/Views/Payments/MyControl.ascx"); from a view works if MyControl.ascx is a control that directly inherits System.Web.Mvc.ViewUserControl.
However, if the control inherits ...
1
vote
2answers
3k views
MVC - Dynamically loading Partial Views
I'm trying to dynamically load partial views into a view by passing the list of paths for the partial views I want and then calling RenderPartial on each. This seems to do the trick. The problem ...
1
vote
2answers
850 views
ASP.NET MVC ViewUserControl: How do I load its scripts dynamically?
I have a ViewUserControl that will be used in some pages in my site, but not all.
This ViewUserControl requires a javascript file, so I would like to have the script reference added automatically to ...
0
votes
5answers
2k views
How to add logic to a User View Control in MVC 3?
User View Control doesn't have a code-behind. So, where/how should I make the events of elements?
I want to understand a logic of a control in MVC...
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
1answer
66 views
When I click to open a ViewPage or a ViewUserControl Visual Studio 2008 hangs for me
When I double click on a ViewPage or a ViewUserControl in Visual Studio 2008 the whole application hangs for me, I have no idea why...
The only error log I can find in the Event Log is this:
.NET ...