Tagged Questions

1
vote
1answer
19 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
60 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 …
7
votes
4answers
884 views

Visual Studio Language Service with C# intellisense

Last year I wrote a Language Service for Visual Studio which added syntax highlighting for NHaml files: http://github.com/snappycode/hamleditor. To clarify, NHaml is a html template language that can …
0
votes
1answer
38 views

Why are my script tags rendered outside my body tag?

This is my nhaml code ^ var title="" !!! XML !!! Strict %html{xmlns="http://www.w3.org/1999/xhtml"} %head %title Nhaml Master #{title} _styles %body .page %h1 = …
0
votes
1answer
111 views

ASP.NET MVC - NHaml issue on web.config file

Hello There, 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 …
1
vote
2answers
103 views

NHaml - still active?

I accidentally stumbled across NHaml and really like what I have seen of it. However, checking the blogs of the authors and Google group reveals that there doesn't seem to be much happening. Is it …
0
votes
1answer
12 views

add output of %link directive to variable?

In my master a partial _styles is loaded. In this _styles there is a ^var styles = "" Now in all my views or partials I can say var styles = styles+"another style" Normally a style is defined as …
3
votes
1answer
329 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. …
0
votes
2answers
21 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 …
1
vote
3answers
110 views

NHAML Radio Button Syntax

Does anyone know the correct syntax for a selected radio button in NHAML? This is my current NHAML code: %input{type="radio", name="Relocation", value="Yes"} The help would be greatly appreciated. …
1
vote
1answer
73 views

NHAML Directives

Does anyone know how to use directives (ex. @ Import) with NHAML?
2
votes
2answers
476 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, …
0
votes
2answers
109 views

NHaml configuration problem: Model is not found

Hello. I'm having a little problem with my NHaml config: <configSections> <section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/> </configSections> …