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 I go about that 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 How would I go about that in NHaml?
| |||
|
feedback
|
|
Boris If I understand correctly you just want to have a strong typed nhaml view? If this is the case there is a sample project in svn that does this. Have a look at http://nhaml.googlecode.com/svn/trunk/src and the NHaml.Samples.Mvc.CSharp project And here is some extracted code Controller
View
View Model
Hope that helps | |||
feedback
|
|
On this page there's a patch (search for NHaml) to do this. I don't know if it works. This requires NHaml from MvcContrib.
| |||
feedback
|
You don't need to do it. You can just use the Model without specifying its type and it will work. For example:
This is because the NHAML view gets compiled. So when all the properties on the Model are correct (names, types etc) the view will be compiled (as source code would). | |||||
feedback
|