Tagged Questions
23
votes
3answers
1k views
NHaml T4 templates for CRUD?
I want to ask if anyone has or has seen T4 templates for NHaml that are the same as the default T4 CRUD (List, Create etc) templates from MVC 2.0?
5
votes
2answers
1k views
Does NHaml have a content_for ability for layouts?
I am currently starting a project utilizing ASP.NET MVC and would like to use NHaml as my view engine as I love Haml from Rails/Merb. The main issue I face is the laying out of my pages. In Webforms, ...
4
votes
2answers
527 views
Should I Learn NHaml?
Should I learn NHaml?
What does it provide me over a classic ASP.NET MVC view? What are the pros and cons?
Are you using it via the MVC Contrib project?
I have been seeing more and more about it. ...
1
vote
0answers
140 views
Is NHaml dead? There's no activity since Aug 2010 [closed]
Looking at both the Google code page and the Github for it, I'm not seeing anything done on the project since August of 2010. Has the project moved somewhere completely different, or has active ...
1
vote
1answer
99 views
Is it possible to use different view engines for different views in the *same* ASP.NET MVC website?
I'd like to experiment with NHaml. Can I use the NHaml view engine for a few of my views, without having to convert the entire application (or create a new prototype application)?
1
vote
3answers
246 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 ...
0
votes
1answer
40 views
Specificying a Page directive attribute on an NHaml page
I am working on an MVC site using NHaml for the view engine.
I have a page that needs to submit HTML code as a form value and am getting the System.Web.HttpRequestValidationException thrown at me.
I ...
0
votes
1answer
55 views
Error when specifying tag attributes in NHaml
I am just getting started with NHaml and ran into a snag.
This is my application.haml file:
%html
%head
%title = Get Some Data
%link{ href="/media/css/styles.css", rel="Stylesheet", ...
0
votes
2answers
80 views
Create an incremental placeholder in NHaml
What I want to reach is a way to add a script and style placeholder in my master.
They will include my initial site.css and jquery.js files.
Each haml page or partial can then add their own required ...
0
votes
1answer
344 views
ASP.NET MVC - NHaml issue on web.config file
I'm trying to implement NHaml views on my application, and it's all working well.
But strangely I'm getting some warnings on web.config files when publishing the application.
My nhaml parameters are:
...
0
votes
2answers
169 views
NHaml configuration problem: Model is not found
I'm having a little problem with my NHaml config:
<configSections>
<section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/>
</configSections>
...