vote up 3 vote down star
1

Hi all,

Have a question about the design/usage of asp.net mvc here.

In the html helper class, you can get to the current controller by Html.ViewContext.Controller. Moreover, you can get to the request, route collection and much more from the html helper class.

Doesn't this go against the rule of MVC? Doesn't this opens up a ways for developer to do heavy controller dependent code in views?

If not, what's the best practice use case for current viewcontext and controller from the html helper class?

Thanks in advance.

flag

54% accept rate

3 Answers

vote up 7 vote down check

Use a strong typed ViewModel, so your view is only dependant of it and not of the controller who generates it

link|flag
vote up 0 vote down

Simple answer is no, generally a view should not be dependant on a controller.

To elaborate a bit on what was already said; there are plenty of ways to shoot yourself in the foot using ASP.Net MVC if you're not careful. The basic concept helps, but there is no way to make it foolproof and still remain flexible enough to be considered useful.

You can do data access directly in the view without much trouble if you want to, or you can bind your model to the web session, etc. Like anything, you probably won't get it right the first time, but you will learn.

link|flag
vote up 4 vote down

Doesn't this go against the rule of MVC?

Yes, it goes.

Doesn't this opens up a ways for developer to do heavy controller dependent code in views?

Yes, it opens that door. It needs to be avoided.

what's the best practice use case for current viewcontext and controller from the html helper class?

The best practice is to write Html helpers unaware of controllers and contexts. They should do their job only based on what data is supplied by the caller.

There are however rare cases where you may want to stretch out of the box. For example, I wrote one a helper that would render Html elements and add automatically increasing IDs to them. In that case the helper should persists somewhere information about the previously used ID value. Here you may want to store that value in ViewContext, for example.

You should however only do such things when you clearly understand what and why you are doing this.

link|flag
2  
Don't the built-in helpers themselves violate this? Html.ActionLink(string linkText, string actionName), for instance, inherits route data from the current request url. Where do you draw the line? – Nariman Nov 4 at 15:07
Html.ActionLink and Url.Action are somewhat specific, they're helpers, but not much of "HTML" helpers. These are clearly exceptions to the common rule. – Developer Art Nov 4 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.