SimonCropp

Stories kicked by SimonCropp

notifypropertyweaver – {get;set;notify} in Silverlight (www.prathameshkulkarni.com)

submitted by kulkarpkulkarp(20) 1 year, 4 months ago

So, what does notifypropertyweaver do? If your class implements INotifyPropertyChanged then you just need to have auto-implemented properties and notifypropertyweaver automagically ensures that on change of value of a property, PropertyChanged event is fired. read more...

add a comment |category: |Views: 45

tags: another

Ruby inspired C# Extension Methods for natural DateTime operations(codeplex.com)

submitted by spavkovspavkov(1708) 3 years, 3 months ago

FluentDateTime is a open source library of Ruby inspired C# Extension Methods for easier and more natural DateTime handling and operations in .NET that allows you to write code like this: DateTime.Now + 1.Week() + 3.Days + 14.Minutes(); 3.Days().Ago(); 5.Days().After(new DateTime(2000, 1, 1)); DateTime.Now.NextDay(); DateTime.Now.WeekAfter(); DateTime.Now.Midnight(); DateTime.Now.SetTime(11, 55, 0); read more...

add a comment |category: |Views: 556

tags: another

ASP.NET MVC with NHaml - F# Edition(codebetter.com)

submitted by mpodwysompodwyso(65) 3 years, 7 months ago

As part of some of my adventures with F#, I've seen a lot of interesting things coming from others with regards to SharePoint, ASP.NET and other technologies. This had me thinking of any possibilities and ramifications of using F# with ASP.NET MVC. Was it possible, and better question, what might make someone use this over their existing toolsets. Those are some of the questions to explore. But, in the mean time, let's take the journey of F# and ASP.NET MVC. read more...

add a comment |category: |Views: 97

tags: another

NHaml: Block Methods and RESTful Helpers(andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

Describes some cool new NHaml features supporting REST style helper methods. read more...

add a comment |category: |Views: 27

tags: another

ASP.NET MVC Tip #35 – Use the NHaml View Engine (weblogs.asp.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

In this tip, I explain how you can use the NHaml view engine as the view engine for an ASP.NET MVC application. I demonstrate how to create NHaml views that display both static content and database records. I also discuss how you can use master pages and user controls with the NHaml view engine. read more...

add a comment |category: |Views: 256

tags: another

Introducing MonoRail NHAML(weblogs.asp.net)

submitted by MirvodaSergeyMirvodaSergey(45) 3 years, 11 months ago

HAML engine for Castle MonoRail project. read more...

add a comment |category: |Views: 160

tags: another

NHaml, now in colour!(sentia.com.au)

submitted by LordLord(3737) 4 years ago

Color coding for NHaml! read more...

add a comment |category: |Views: 39

tags: another

MVC Storefront, Part 7: Helpers and Routing(blog.wekeroad.com)

submitted by SimonCroppSimonCropp(95) 4 years ago

MVC Storefront, Part 7: Helpers and Routing read more...

add a comment |category: |Views: 24

tags: another

Introducing NHaml - An ASP.NET MVC View Engine(andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 4 years, 5 months ago

NHaml (pronounced enamel) is a pure .NET implementation of the popular Rails Haml view engine. From the Haml website: “Haml is a markup language that‘s used to cleanly and simply describe the XHTML of any web document, without the use of inline code. Haml functions as a replacement for inline page templating systems such as PHP, ERB, and ASP. However, Haml avoids the need for explicitly coding XHTML into the template, because it is actually an abstract description of the XHTML, with some code to generate dynamic content.” In other words, NHaml is an external DSL for XHTML. It’s primary qualities are it’s simplicity, terseness, performance and that it outputs nicely formatted XHTML. Additionally, the NHaml view engine provides support for Rails style layouts and partials. read more...

2 comments |category: |Views: 1032

tags: another