zombeast

Stories kicked by zombeast

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 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

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

Intro To Microsoft Unity - Configuring the Container through XML (blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 4 years ago

Learn how to configure Microsoft Unity through manual registration and XML registration. A full sample application is included for download. read more...

add a comment |category: |Views: 51

tags: another

Using iTextSharp To Watermark/Write Text to Existing PDF's(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 4 years ago

This tutorial shows you how to write text to an existing PDF by using iTextSharp. Learn how to write text on top of the document, below the document and at various locations through the code and full solution provided. read more...

add a comment |category: |Views: 1768

tags: another

The Linq SelectMany Operator(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 4 years ago

A quick look at the SelectMany operator, what it does, and how you use it. read more...

add a comment |category: |Views: 1024

tags: another

The Importance of Unit Testing WCF Attributes(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 4 years ago

What happens when you don't test certain WCF Attribute values in your unit tests? Sometimes nothing - and sometimes all hell breaks loose. I'm scared of the latter. :) This is a quick and easy intro into how to unit test your operation contract attribute values. read more...

add a comment |category: |Views: 200

tags: another

Day-to-day with Subversion(weblogs.asp.net)

submitted by jonasjonas(2215) 4 years ago

A good post that highlights some of the functionality of Subversion read more...

add a comment |category: |Views: 67

tags: another

NUnit 2.4.7 Released w/ RowTest Attribute (example included)(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1290) 4 years, 1 month ago

NUnit now includes the RowTest extension, written by Andreas Schlapsi, in it's extension assemblies. This extension allows you to write test methods that take arguments and to provide multiple sets of argument values using the RowAttribute. To use RowTest, your test must reference the nunit.framework.extensions assembly. This post covers how to utilize this attribute. read more...

add a comment |category: |Views: 40

tags: another

Phil Haack to join ASP.NET team(haacked.com)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 8 months ago

Only good things can come from this read more...

4 comments |category: |Views: 1

tags: another

You're Probably Storing Passwords Incorrectly(codinghorror.com)

submitted by sirroccosirrocco(800) 4 years, 8 months ago

The web is nothing if not a maze of user accounts and logins. Almost everywhere you go on the web requires yet another new set of credentials. Unified login seems to elude us at the moment, so the status quo is ... read more...

add a comment |category: |Views: 8

tags: another

Watermarking Images in ASP.NET with an HttpHandler(blog.donnfelker.com)

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

Learn how to easily watermark images with a simple HttpHandler. Apply custom text that will overlay the image. The the text can be transparent or non-transparent. read more...

add a comment |category: |Views: 174

tags: another

The VB.NET Salary Gap(vbnotebookfor.net)

submitted by vbnotebookvbnotebook(655) 4 years, 8 months ago

Have you ever wondered what the salary difference is between a VB.NET and a C#, C++ or Java job? I did a little research on this tonight, courtesy of Indeed.com, the job listing aggregation site. What I found really wasn’t all that surprising but it was interesting none the less. read more...

2 comments |category: |Views: 8

tags: another

Automated Form Posting with .NET / ASP.NET's CURL(blog.donnfelker.com)

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

Learn how to use the HttpRequest object and Fiddler to create web requests and post values to forms in a runtime environment. read more...

add a comment |category: |Views: 30

tags: another