|
|
CraigStuntz
CraigStuntz
 |
|
Stories kicked by CraigStuntz
|
|
published 2 months, 3 days ago, submitted by
jacook11
2 months, 3 days ago
mattberseth.com — Conclusion
There is an incentive for publishers that use DNK to setup phony accounts that will help get stories from certain domains on the front page. So guess what happens ... it would appear that a certain number of people are doing this. read more...
8 comments
|
category: Other | Views: 333
|
|
tags:
DotNetKicks | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
JamesCBender
2 months, 5 days ago
jamescbender.com — I had the good fortune to attend the PDC pre-conference and was able to attend a day-long WCF session with Juval Lowy and Ron Jacobs.
Juval went first and spoke for most of the day. Juval has been working closely with Microsoft for quite some time, and his COM(+) roots were showing big time. Essentially, Juval is of the opinion that WCF is a .NET killer and should be the way ALL applications are written from here on it.
As Juval has extensive expertise with COM, I think he tends to see everything in terms of that model, and he may have a point. As a result, he made the bold statement in the pre-conf session of referring to WCF as a .NET killer.
While I'm not prepared to follow Juval in claiming .NET dead at the hands of WCF, he makes some good points. If you think of the communication between objects in a system analogous to the communication of services in an architecture, WCF provides some cool abilities that the traditional model in .NET does not. read more...
add a comment
|
category: Architecture | Views: 32
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
benhart
2 months, 23 days ago
blog.benhartonline.com — HtmlHelper is used quite frequently in ASP.MVC. It has a number of dependencies, so testing the numerous extension methods on it (both default, and added) can make for some ugly code. This simple code sample shows how to mock out the dependencies (ViewContext for one) using Moq. read more...
add a comment
|
category: ASP.NET | Views: 23
|
|
tags:
Moq, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 24 days ago, submitted by
CraigStuntz
3 months, 28 days ago
gregbeech.com — When debugging, it's common to hover over an object to get a quick view of what its properties are. This is where DebuggerDisplayAttribute comes in. The format string looks similar to normal .NET format strings in that the values to replace are between curly braces, but instead of being told what to substitute the debugger treats these values as expressions and attempts to evaluate them using the current context. read more...
add a comment
|
category: Visual Studio | Views: 185
|
|
tags:
Debug, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 29 days ago, submitted by
Bognit
3 months, 29 days ago
blog.donnfelker.com — Very handy... I'm forever looking this stuff up :-| read more...
10 comments
|
category: Other | Views: 1044
|
|
tags:
Geral | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months ago, submitted by
dcarr
4 months ago
blog.domaindotnet.com — Linq is not just about databases. It’s about reading the registry, your hard-disk, or even a list of function pointers to be invoked. Linq is about more event then sets (collections). It’s about making tasks easier in many cases and vastly more powerful (and most importantly your code more readable and maintainable at the same time). It’s astounding just how fast the HashSet<T> collection is. This post will show how to gain additional power that is fully supported from Microsoft which is often overlooked, yet it can solve some of the hardest problems (especially around performance however don’t prematurely optimize!).
Linq, HashSet, ORM, NHibernate, Linq to NHibernate, Linq Undocumented, Functional Programming, .NET 3.5 read more...
3 comments
|
category: C# | Views: 368
|
|
tags:
LINQ, mock, Registry, Recursion, Server | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 8 days ago, submitted by
maartenba
4 months, 8 days ago
blog.maartenballiauw.be — ASP.NET MVC action methods can be developed using regular method parameters. In earlier versions of the ASP.NET MVC framework, these parameters were all simple types like integers, strings, booleans, … When required, a method parameter can be a complex type like a Contact with Name, Email and Message properties.
This blog post shows you how to use the ModelBinder attribute which allows ASP.NET MVC action methods to accept complex types. read more...
add a comment
|
category: ASP.NET | Views: 226
|
|
tags:
Model, Binding, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 11 days ago, submitted by
maartenba
4 months, 11 days ago
blog.maartenballiauw.be — In earlier ASP.NET MVC previews, form validation was something that should be implemented "by hand". Since the new ASP.NET MVC preview 5, form validation has become more handy. Let me show you how you can add validation in such a ridiculously easy manner. read more...
1 comment
|
category: ASP.NET | Views: 334
|
|
tags:
ASPNETMVC, Validation, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 12 days ago, submitted by
keithelder
4 months, 12 days ago
keithelder.net — Have you ever tried to use one browser and one browser only? This article outlines how impossible it can be even in 2008 to do. There are countless public facing Asp.Net web sites that require Internet Explorer. The perception and impact this has on the non Asp.Net community is something developers need to think about. It is an interesting read that provides a lot of insight into the problem and some ways to fix it. read more...
2 comments
|
category: ASP.NET | Views: 400
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 16 days ago, submitted by
contour
4 months, 17 days ago
littletutorials.com — Starting from some comments on my exception handling series of articles I run into a couple of blogs pointing to this post on joelonsoftware.com. I think this is the worst advice on exception handling I have ever read, sorry Joel. I know this is an old post, I know Joel is entitled to his own opinion and I know he has the right to write his code as he sees fit. But as an opinion leader he influences others. read more...
add a comment
|
category: Architecture | Views: 603
|
|
tags:
Architecture | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 17 days ago, submitted by
JamesEggers
4 months, 19 days ago
randomactsofcoding.blogspot.com — This is second post in a string of posts where I chronicle my adventure in learning jQuery from having no previous experience with the framework. This week, we look at basic animation effects that affect an element's visibility that are available "out of the box" with jQuery. read more...
add a comment
|
category: ASP.NET | Views: 342
|
|
tags:
jQuery, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 20 days ago, submitted by
ourcurrentfuture
4 months, 21 days ago
smashingmagazine.com — With the popularity of CSS layouts and JavaScript-enriched web page experiences, it’s not uncommon, particularly for large sites, for the CSS files alone to grow in size, but there are some principles to consider during and after you write your CSS to help keep it tight and optimized. Optimization isn’t just minimizing file size — it’s also about being organized, clutter-free, and efficient. You’ll find that the more knowledge you have about optimal CSS practices, smaller file size will inevitably come as an direct result of their implementation. You may already be familiar with some of the principles mentioned in this article, but they are worth a review. Being familiar with this concepts will help you write optimized CSS code and make you a better all-around web designer. read more...
add a comment
|
category: Tips & Tricks | Views: 418
|
|
tags:
Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 25 days ago, submitted by
rao.ritesh
4 months, 26 days ago
codeinsanity.com — In my previous post I put down some thoughts on the Repository and Specification patterns and in the end said that with the introduction of Linq and the growing popularity of ORM frameworks and their support for Linq, it’s time to look back at these two patterns and see how we can leverage Linq to simplify the patterns and make them infrastructure agnostic. read more...
1 comment
|
category: Patterns | Views: 306
|
|
tags:
Patterns | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 4 months, 23 days ago, submitted by
ourcurrentfuture
4 months, 26 days ago
weblogs.asp.net — To get JavaScript IntelliSense working in VS 2008 SP1, you need to tell IntelliSense the location of the libraries that you're using. You do that by adding a special comment at the top of the .js file. Here's How.. read more...
add a comment
|
category: Visual Studio | Views: 221
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads by The Lounge
|