jaltiere

Stories submitted by jaltiere

Injection with Ninject and MVC ValidationAttribute classes(www.jaltiere.com)

submitted by jaltierejaltiere(885) 2 years ago

This article shows how you can have dependencies injected in a ValidationAttribute using Ninject 2 and MVC 2. read more...

add a comment |category: |Views: 44

tags: another

display grid data with jqGrid and MVC(www.jaltiere.com)

submitted by jaltierejaltiere(885) 2 years, 1 month ago

This article walks through an example setting up a grid with jqGrid. It shows how to add, edit and delete records, as well as implement your own custom grid filter. read more...

add a comment |category: |Views: 197

tags: another

Using the delegate method in JQuery(www.jaltiere.com)

submitted by jaltierejaltiere(885) 2 years, 1 month ago

This article shows how to use the delegate method in JQuery to attach events to DOM elements that are added dynamically. In this example photos from a directory or loaded, and the site polls the directory and adds photos asynchronously. It also demonstrates how to use the data cache in JQuery to store additional information. read more...

add a comment |category: |Views: 16

tags: another

Making web service calls with JQuery(www.jaltiere.com)

submitted by jaltierejaltiere(885) 2 years, 1 month ago

This article walks through an example of creating a javascript object and passing it to a .NET web service via JSON. It also shows how to use JQuery to make the web service call asynchronously. read more...

2 comments |category: |Views: 424

tags: another

Parsing POP email with .NET, display with MVC photo gallery(www.jaltiere.com)

submitted by jaltierejaltiere(885) 2 years, 1 month ago

This article walks through a sample app where a pop email account is scraped via .NET and the attachments are loaded into a simple photo gallery using ASP.NET MVC. read more...

add a comment |category: |Views: 19

tags: another

Red-Black tree, deleting nodes(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 5 months ago

This is the second in a series of articles dealing with deleting nodes from a red black tree in C#. read more...

add a comment |category: |Views: 36

tags: another

Implementing a red black tree in C#(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 5 months ago

This article talks about how to implement a red-black tree in C#. The implementation is generic, and it also implements IEnumerable<T>. read more...

add a comment |category: |Views: 1002

tags: another

Persistence Ignorant Objects with ActiveRecord(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 10 months ago

This article explores how we could achieve persistence ignorance for business object with ActiveRecord using a repository. read more...

add a comment |category: |Views: 39

tags: another

Intro to ActiveRecord(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 10 months ago

This article is the third in a series of articles concerning NHibernate. This article specifically deals with the Castle ActiveRecord project and how it makes NHibernate easier to use. read more...

add a comment |category: |Views: 43

tags: another

NHIbernate relationships and inheritance(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 10 months ago

This is the second part in a series of articles about NHIbernate. This article covers one to one and one to many relationships, inheritance, etc. read more...

add a comment |category: |Views: 444

tags: another

Intro to NHibernate(jaltiere.com)

submitted by jaltierejaltiere(885) 3 years, 11 months ago

This article takes someone through setting up NHibernate for the first time using the AdventureWorks database. read more...

add a comment |category: |Views: 61

tags: another

SQL Server OpenXML(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 1 month ago

This article uses the AdventureWorks sample database to show an example of the OpenXML function in SQL Server. read more...

add a comment |category: |Views: 22

tags: another

Observer Pattern Revisited - Events and Delegates(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 1 month ago

This article shows how to use events and delegates in the .NET Framework to simulate the Observer Design Pattern. read more...

add a comment |category: |Views: 31

tags: another

Using the Observer Pattern(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 1 month ago

This article walks through a C# example of implementing the Observer design pattern using an interesting video game example read more...

1 comment |category: |Views: 50

tags: another

Implementing the Singleton Design Pattern in .NET(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 2 months ago

This article demonstrates how to implement a thread safe singleton in C#. read more...

1 comment |category: |Views: 6

tags: another

Building an API with .NET(jaltiere.com)

submitted by jaltierejaltiere(885) 4 years, 2 months ago

This article walks through setting up a simple REST API in C# by creating a custom HttpHandler. read more...

add a comment |category: |Views: 33

tags: another