0
votes
1answer
16 views
How to proper initialize the nvelocity engine?
As I saw in some examples, and tried to understand throughout the velocity site, there are three ways of initializing the velocityengine:
- With the default configurations : .Init()
- With the default …
1
vote
1answer
26 views
How to catch InvalidReference error in NVelocity
I am using codeplex NVelocity library on .net and i want to catch an error when I execute Evalute method on VelocityEngine instance and one of the parameter in template text was not found.
How can I …
0
votes
1answer
59 views
NVelocity - Only show row if not null…
I have the following in my NVelocity template:
#if($PO.GiftMessage != '')
<tr>
<td align="left">
<font face="arial" size="2" color="#000000">
<b>Gift …
0
votes
2answers
58 views
Castle Nvelocity GetTemplate method won’t work
I've been trying to follow this instructions to implement email templating using NVelocity but I keep getting a resource not found exception from the GetTemplate method.
I've used Server.MapPath …
0
votes
1answer
54 views
How to handle XSS on NVelocity
Castle Project is full of features, includes some awesome subprojects, and developing with it has been a pleasure.
My team is almost ready to deliver a custom made EAM and we are polishing our …
1
vote
1answer
74 views
How to use NVelocity without embedding the templates as resources?
I've been playing around with NVelocity to create a library that loads mail templates. And I haven't been able to load a template without embedding it into the application assembly. Is there a special …
3
votes
7answers
713 views
Is the NVelocity project dead? Are there alternatives?
I'm looking for a template engine for .NET/C# to generate email notifications in my application. I read about NVelocity in the past and think it would fit my needs, but it seems this project is dead.
…
0
votes
1answer
28 views
NVelocity - Displaying money value…
I have an object - call this "order"
This object has a property - Total. This is type - decimal (it's a money value)
In my template i have something like:
Order Total: $order.Total GBP
…
0
votes
0answers
44 views
NVelocity — #parse with embedded resources
I'm generating emails based off embedded NVelocity templates and would like to do something with dynamically included sections. So my embedded resources are something like this:
DigestMail.vm
…
2
votes
6answers
179 views
What’s the nvelocity/C# equivalent of “if x in array” ?
Hacking on a Nvelocity C#/.NET view template (.cs file), I'm really missing the Python keyword "in" (as in, "foo in list"). What is the built-in for checking list/array membership?
This is what my …
0
votes
1answer
264 views
Castle Nvelocity - Getting started.
Im trying to follow this guide:
http://www.castleproject.org/others/nvelocity/usingit.html
Can you tell me what dlls I have to include to get his working:
VelocityEngine velocity = new …
0
votes
1answer
243 views
MasterPage/ContentPage with NVelocity and ASP.NET MVC?
I am a big fan of NVelocity. I think its terse syntax is a huge boon, and helps keep my views simple and effective. I have begun using the NVelocity view engine from the Mvc Contrib project for …
1
vote
1answer
77 views
asp mvc with nvelocity?
I am trying use NVelocity with ASP.NET MVC, but I am having difficulty navigating the noise of out-of-date information. There are many broken links, incorrect info, etc. Is there a guide or howto …
0
votes
1answer
335 views
GetLocalResourceObject with NVelocity
How can I load a .resx file with GetLocalResourceObject when using NVelocity? I'm using ASP.NET MVC with mvccontrib nvelocity viewengine and sharp-architechture.
I've hardcoded every possible …
0
votes
2answers
154 views
How do I pass a String into a function in an NVelocity Template?
I'm using the NVelocity Templating engine to produce a fixed-length field output - you know the kind of thing:
Field Start Pos Field Length Notes
---------- --------- ------------ …
