By tag: comparison
0
kicks
Validation Techniques in ASP.NET MVC
Article described general validation techniques that could be used in ASP.NET MVC. It is based on real project experience and explains the peculiarities and drawback of some approaches to help developers and architects to choose the best one for them.
0
kicks
Advanced validation techniques in ASP.NET MVC
Article fully compares different validation techniques which could be used in ASP.NET MVC trying to help in choosing the best one for some projects. It's a first article from the series about validation written by AST.NET MVC specialists from Qulix Systems.
0
kicks
ASP.NET MVC WebForms vs Spark View Engines. Part 2. Markup
It's second article from the series of the "Web Foms vs Spark View Engine". It shows differences between pages on the real project.
0
kicks
Implementing Object Comparison
Comparison operators are often implemented poorly in .NET, in the sense that they contain duplicate code or perform certain checks, like a null reference test, multiple times. This article demonstrates a pattern that you can use to implement object comparison in a way that causes zero redundant code...
0
kicks
ASP.NET WebForms vs Spark View Engine. Part 1
First part from the series of articles that fully compare ASP.NET MVC engines - standard Web Forms engine and Spark View Engine: by functionality, by code and by performance.
0
kicks
Comparing ORMs - LINQ-to-X, LightSpeed, EntitySpaces and OpenAccess
How do LINQ-to-SQL, LINQ-to-Entities, LightSpeed, EntitySpaces and OpenAccess stand up when compared to each other? This post discusses what to consider when selecting your O/R Mapper and links to a feature matrix comparing the features provided by each of these products.
0
kicks
Browser Beta Battle IE8 vs Firefox 3.0b5
A quick comparison of page load times on IE8 vs Firefox 3.0b5
0
kicks
How to: Optimize the strings’ comparison
Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework.
0
kicks
J2EE vs ASP.NET vs PHP
In this article, I wanted to compare the web application development platforms which I have been using for recent years. My comparison has no aim to make one platform better than others, or vice versa. These are all my own thoughts and what I have experienced during the development of web applicatio...
0
kicks
IronRuby, JRuby or Ruby On Rails...Who's the winner in Long Run.
An interesting look at Ruby World
0
kicks
How to sort a generic List<T>
Sorting a generic List<T> using anonymous methods and the Comparison<T> delegate.
0
kicks
Do Infragistics Controls keep what they promise?
Comparison of the controls from: Infragistics, Janus Controls, and devExpress...
Comparison done on performance of the grid (main used control)
0
kicks
Conditional WHERE clauses in T-SQL using comparison operators
Ever had a query where you wished you could be able to specify the operator (equal, not equal, greater than, etc.) for each column contained in your WHERE clause, without having to use ugly string concatenations and the infamous EXEC keyword? Here we'll see an example of how this can be achieved wit...