donnfelker

Stories kicked by donnfelker

Hello World, I am Win Phone 7(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 1 month ago

Take a first look at Windows Phone 7 Development. We will walk through creating a simple hello world application as well as give a quick tour of how to use the emulator. read more...

add a comment |category: |Views: 352

tags: another

ASP.NET MVC and the Spark View Engine(www.code-magazine.com)

submitted by justinjustin(115) 2 years, 3 months ago

Getting friendly with HTML in ASP.NET MVC just got a whole lot easier. In this Code Magazine article, Donn Felker delves into the Spark View Engine, an alternate view engine for the ASP.NET MVC Framework. Spark’s main goal is to allow HTML to dominate the flow of view development while allowing code to fit in seamlessly. read more...

1 comment |category: |Views: 314

tags: another

Working with Partials in Spark: Part 2(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 4 months ago

We continue to take look at how to use Partials within the Spark View Engine. In this episode we will take a deeper look at partials and learn more about their _undocumented_ features. We will also be learning how partials will allow us to create clean, compartmentalized and well organized code. read more...

add a comment |category: |Views: 89

tags: another

Working with Partials in Spark: Part 1(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 4 months ago

Taking a look at how to use Partials within the Spark View Engine. We will be taking a first look at partials and learn how we can setup our application to use partials as well as how to use them in your application. We will also be learning how partials will allow us to create clean, compartmentalized and well organized code. read more...

3 comments |category: |Views: 132

tags: another

Reimagining www.asp.net - Part One: The Home Page Experience(john-sheehan.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 8 months ago

How would you redesign www.asp.net if you could start from scratch? read more...

add a comment |category: |Views: 280

tags: another

Auto-Creating Your DB with Active Record(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 2 years, 10 months ago

A demonstration of how to automatically create a SQL Db on the fly with SQL Express. The demonstration also includes ASP.NET MVC, Spark, Active Record, Castle Windsor. read more...

add a comment |category: |Views: 13

tags: another

Exploring how to use Expressions w/ Spark(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Taking a look at the various different ways you can use Expressions with the Spark View engine. We are going to review simply scenarios such as math based expressions and move up to looking at nested if-then-else statements. read more...

add a comment |category: |Views: 148

tags: another

Exploring how to use Global Variables and ViewData (Strongly typed and(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Taking a look at how to utilized both global variables and local variables. We will also take a look at how to create and use both strongly typed viewdata and weakly typed view data. read more...

add a comment |category: |Views: 266

tags: another

Learning Hudson: Setting up to run and report Unit Test results(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

We will be taking a look at how we can use Hudson to report our Unit Tests results after each build. We will be looking at both reporting NUnit and MSTest results and will also show how you can convert MSTest results into NUnit results in order to report all tests in a single screen. read more...

add a comment |category: |Views: 223

tags: another

Learning how to add IntelliSense for the Spark View Engine(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 11 months ago

Learning how to add IntelliSense for the Spark View Engine inside Visual Studio read more...

add a comment |category: |Views: 392

tags: another

Saying Hello to the Spark View Engine(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a introductory look at the Spark View engine. The Spark is a view engine for Asp.Net Mvc and Castle Project MonoRail frameworks. The idea is to allow the html to dominate the flow and the code to fit seamlessly. read more...

2 comments |category: |Views: 419

tags: another

Learning the Observer Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how we can use the Observer Pattern in our application. The Observer pattern allows you to define a one-to-many relationship inside your application where the parent object (the one) has the ability to notify the child objects (the many) of any state change. You can utilize this pattern to make sure that a set of objects are keep in order when there behavior needs to change based on the state of your application. read more...

add a comment |category: |Views: 374

tags: another

ReSharper Templates (live and file)(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 3 years, 4 months ago

A set of NUnit, Rhino Mocks and other templates for use in your ReSharper instance. read more...

add a comment |category: |Views: 47

tags: another

Using Prism (Composite WPF) EventAggregator(blog.donnfelker.com)

submitted by brandewinderbrandewinder(530) 3 years, 4 months ago

Imagine that your "Services" layer needs needs to send off an event that some data has changed. One way to do this would be to bubble the event to the parent layer and then let that layer bubble the event up again. For example, lets say that the Service layer changed the Customer and it wants to let any interested parties know (as it should) through an event. So it sends a "CustomerChanged" event notification. Since the only object who is watching the Service layer is the Model layer, the model layer will grab the event and then re-publish it again (bubbling it up) the object graph). As you can tell, its a royal pain to do this. Imagine the amount of code you have to write. You've to write a ton of plumbing just to bubble the event from the service to the model to the view model to the view, and vice versa. This is where an event aggregator comes in. read more...

add a comment |category: |Views: 173

tags: another

BlogEngine.NET extension: Detailed Download Counter(blog.catenalogic.com)

submitted by TischnoetentoetTischnoetentoet(424) 3 years, 4 months ago

A detailed download counter extension for BlogEngine.NET 1.4.* that registers all downloads on your blog and shows you detailed information about the downloads itself. read more...

add a comment |category: |Views: 17

tags: another

How To: REST Services in WCF 3.5 Part 2 - The POST(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 3 years, 5 months ago

Learn how to utilize the WebInvoke Attribute in WCF 3.5 to implement a RESTful Web service that accepts POST requests. read more...

add a comment |category: |Views: 207

tags: another