(Ben Nadel) I’ve talked about parsing CSV (Comma Separated Value) data on this blog a number of times, both in ColdFusion and in JavaScript. Every now and then, someone brings up the fact that ColdFusion may run out of memory when parsing ginormous files.
Tag: Development
How to Implement 2-Step Verification in ASP.NET MVC
(Keyvan Nayyeri) Nowadays security is more important than ever on the internet, and the majority of security issues on websites are caused by user accounts being compromised. As a good prevention strategy, the use of 2-step or phone verification mechanisms is becoming common on the internet. In this
Creating Your Own jQuery Custom Selector
(Suprotim Agarwal) jQuery supports a large subset of selectors defined by the CSS3 Selectors draft standard.
Parallel For Loop
The second part of the Parallel Programming in .NET tutorial examines the parallel for loop. This allows the execution of a specific number of loop iterations in parallel, with data decomposition handled automatically by the Task Parallel Library.
Auditing Events in .NET Applications
(Zoran Horvat) In this article we are pushing further down into murky depths of .NET event driven application internals. Several concepts used to implement event subscriptions in practice (all strictly based on MSDN) will be explained and their functioning used to implement otherwise hardly implemen
WCF: Creating Long-Running Services
(Peter Vogel) Not all business operations finish in seconds. Using Windows Communication Foundation you can still create — as a single project — an application that supports business services that take hours (or days or weeks or months) to complete.
Deferred vs Immediate Query Execution in LINQ
(Suprotim Agarwal) In LINQ, queries have two different behaviors of execution: immediate and deferred. In this article, we will take a quick overview of how Deferred query execution and Immediate Query Execution works in LINQ.
Writing an ASP.NET MVC Controller Inspector
(Phil Haack) 99.99999% of the time (yes, I measured it), a controller in ASP.NET MVC is a type, and an action is a method — with reflection as the glue that holds it all together. For most folks, that’s the best way to view how ASP.NET MVC works.
Generating Code Using Text Template Transformation Toolkit (T4)
(Bipin Joshi) Many times developers come across situations where they need to write similar code over and over again.
Creating an ASP.NET 3.5 Gridview Image Gallery
A Gridview is a web control that produces a table layout when outputted to the browser. You can also use this web control to display images such as an image gallery, which is what I will be showing you how to do in this tutorial.
