Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using RazorEngine to render out some basic content (a very crude content management system)

It works great until I include any @Html syntax into markup.

If the markup contains an @html I get the following error:

Unable to compile template. The name 'Html' does not exist in the current context

this is the view that renders the markup:

@Model Models.ContentPage

@{
    ViewBag.Title = Model.MetaTitle;
    Layout = "~/Views/Shared/Templates/_" + Model.Layout + "Layout.cshtml";

}
@Html.Raw(RazorEngine.Razor.Parse(Model.Markup, Model))

I have seen on the Codeplex site for RazorEngine the use of @Html (I know the verion on there is out of date and I got my versio nvia nuget)

Any help on this would be great.

share|improve this question

2 Answers

up vote 6 down vote accepted

The Html and Url helper properties are actual features of MVC's implementation of Razor in their view engine. Out of the box, Html and Url are not currently supported without specialising a custom base template.

The upcoming v3 release will be accompanied by an associated RazorEngine.Web release, which will hopefully include an MVC3 compatible base template with Html and Url support.

The example I wrote on the project homepage, is purely an example of using a custom base template.

You can find out more about v3 at https://github.com/Antaris/RazorEngine

share|improve this answer
Thanks for the reply, do you have an example or a link to how I can define a special base template, as I really need this option available now, and I can change it later to use the built in way later? thanks again – JamesStuddart Dec 19 '11 at 13:45
I have looked at razorengine.codeplex.com/… but the version I got from nuget does not have the SetTemplateBase method? – JamesStuddart Dec 19 '11 at 13:59
Currently, we're pushing the v3.0.5beta release on Nuget, you can install the older v2.1 release using Install-Package RazorEngine -Version 2.1. A lot has changed in v3 which makes some of your existing code incompatible with your older v2.1 – Matthew Abbott Dec 19 '11 at 14:55
Ok thanks, Ill take a look at that – JamesStuddart Dec 19 '11 at 15:09

Check https://github.com/Antaris/RazorEngine/wiki/6.-Encoding-Values page. I copy / past it here:

By default RazorEngine is configured to encode as Html. This sometimes this presents problems were certain characters are encoded as Html but what you want is to output them as-is. To output something in raw format use the @Raw() built-in method as shown in the following example:

string template = "@Raw(Model.Data)";
var model = new { Data = "My raw double quotes appears here \"hello!\"" };

string result = Razor.Parse(template, model);

Which should result in:

My raw double quotes appears here "hello!"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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