Malkir

Stories kicked by Malkir

A new validation framework for F# and ASP.NET MVC(justsimplecode.com)

submitted by MalkirMalkir(96) 1 year, 6 months ago

Write your validators once and have it work both server side and client side. read more...

1 comment |category: |Views: 62

tags: another

F# and first-class functions, part 4: doing heavy lifting(www.mindscape.co.nz)

submitted by traskjdtraskjd(3229) 1 year, 7 months ago

The 4th and final part in the first-class functions series, this post brings it all together and starts doing some serious work in F#! See how F# has made it easy for to use higher-order functions to solve a real world problem more concisely and more simply than in C# or Visual Basic. read more...

add a comment |category: |Views: 104

tags: another

A new way to filter a list by URL - StringToIQueryable(weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 4 months ago

Ever see a URL with a bunch of query string variables that is used to filter a list result? There is a new way to write and parse a query parameter using a parser monad and a few standard combinators that can be used to filter an IQueryable based on a pre-defined syntax. Have a look at the code that will make your querying easier with MVC. read more...

add a comment |category: |Views: 11

tags: another

ASP.NET MVC 2 Preview 2 Released(haacked.com)

submitted by TroyMGTroyMG(2670) 2 years, 7 months ago

Today we just released ASP.NET MVC 2 Preview 2 for Visual Studio 2008 SP1 (and ASP.NET 3.5 SP1), which builds on top of the work we did in Preview 1 released two months ago. Some of the cool new features we’ve added to Preview 2 include... read more...

add a comment |category: |Views: 438

tags: another

Introducing PostSharp 2.0: #1 - NotifyPropertyChanged (postsharp.org)

submitted by gfraiteurgfraiteur(988) 2 years, 8 months ago

Gael Fraiteur does first revelations about PostSharp 2.0 on a real-life example: implementing the INotifyPropertyChanged pattern with an aspect. Be safely seated! read more...

add a comment |category: |Views: 506

tags: another

Reflecting Code Is Not A Perfect Science(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 2 years, 9 months ago

Interesting when .NET Reflector creates code which executes different from the code written. read more...

add a comment |category: |Views: 339

tags: another

ASP.NET MVC V2 Preview 1 Strongly Typed UI Helper Performance(elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 2 years, 9 months ago

I am sure many of you ASP.NET MVC enthusiasts have either examined, downloaded, or started to play around with the ASP.NET MVC V2 Preview 1 release. One of the many new features is the concept of Strongly Typed UI Helpers such as Html.DisplayFor() & Html.EditorFor() which take a Lambda Expression as their argument. This is a great new feature because we can now get compile time checking of our arguments and it provides the ability to easily refactor changes across our project. The old version of the Html Helpers were littered with Magic Strings that were susceptible to error and painfully resistant to change. read more...

add a comment |category: |Views: 9

tags: another

C# lambda and foreach variable(resnikb.wordpress.com)

submitted by resnikbresnikb(110) 2 years, 9 months ago

Surprising behavior of lambdas read more...

4 comments |category: |Views: 647

tags: another

Combining Assemblies Using ILMerge(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 2 years, 10 months ago

When creating solutions that include multiple projects, Visual Studio creates an assembly for each project. This can lead to libraries that are complicated to use, needing many references. Using ILMerge, the assemblies can be combined into a single file. read more...

add a comment |category: |Views: 228

tags: another

How Do You Deal With Exceptions?(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years ago

A little post on my ideas about handling exceptions within applications. How do you handle them? read more...

add a comment |category: |Views: 748

tags: another

ELMAH: Error Logging Modules and Handlers for ASP.NET (and MVC too!)(hanselman.com)

submitted by sharplifesharplife(4570) 3 years, 1 month ago

ELMAH has been one of the most useful tools for ASP.NET developers to log errors on their web applications. Now Scott has a nice talk on how to use it even in your ASP.NET MVC applications. Cool! read more...

add a comment |category: |Views: 333

tags: another

ASP.Net – Never again fear publishing your website with debug=true(blog.aggregatedintelligence.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

What makes the deployment element special is that it is a machine level configuration element. When its retail attribute is set to true, it will disable the <compilation debug=”true”> for ALL ASP.Net applications running on that machine. In addition, it turns of detailed errors messages being sent to remote machines and disables the ability to trace output. read more...

add a comment |category: |Views: 407

tags: another

Reducing Duplicate Content with ASP.NET MVC(blog.dantup.me.uk)

submitted by LordLord(3737) 3 years, 1 month ago

As you're all no doubt aware, ASP.NET MVC recently went RTM. This brings the MVC-style of coding, made very popular by Ruby-on-Rails to the ASP.NET world. I've been eager to start using MVC for months, but I've been holding off until I knew the API was locked down so I don't have to change anything. Unfortunately, like WebForms, MVC has some "issues" with regards to duplicate content, making it not all that SEO-friendly. read more...

add a comment |category: |Views: 19

tags: another

Don’t Get Bit By Lazy Evaluation(codethinked.com)

submitted by mattman206mattman206(305) 3 years, 1 month ago

A very good explanation of how delayed evaluation can cause subtle problems in your code. read more...

add a comment |category: |Views: 299

tags: another

Microsoft ASP.NET MVC 1.0 is now Open Source MS-PL(hanselman.com)

submitted by MarwanMarwan(850) 3 years, 1 month ago

Today, ASP.NET MVC is now Open Source and licensed under MS-PL. That means you can change it, redistribute your changes, even fork it if you want. MS-PL is an OSI-Approved Open Source License and you can read the legalese on their site. read more...

add a comment |category: |Views: 15

tags: another

ASP.NET MVC Best Practices (Part 1) - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by mithumithu(570) 3 years, 1 month ago

In this post, I will share some of the best practices/guideline in developing ASP.NET MVC applications which I have learned in the hard way. I will not tell you to use DI or Unit Test instead I will assume you are already doing it and you prefer craftsmanship over anything. read more...

add a comment |category: |Views: 386

tags: another