(V.N.S Arun) The .Net framework 4.0 version is mounted with lots of new features, out of which the Parallel Programming using the Task Parallel Library (TPL) is the one gaining more interest. In this article I will write about the Task class under the namespace System.Threading.Tasks.
Tag: Development
jQuery: How to get objects by ID, Class, Tag, and Attribute
(Ryan Boudreaux) In this second segment in my jQuery series, we will review getting objects by ID Selector (#id), by Class Selector (.class), by Tag, and by Attribute (.attr()).
PHP array_chunk Function
(TheloniusFunk) In this programming tutorial, you will learn how to work with the PHP array_chunk function.
ColdFusion 10 – Creating A Simple Expression Evaluator
(Ben Nadel) Yesterday, I was looking at ColdFusion 10’s native WebSocket filtering functionality. It uses the special data key, “selector,” as a way to define message filtering criteria. Last night, I started to think about how I could replicate this behavior in my WSApplication.cfc WebSocket proxy
Ternary operator in VB.NET
(Jalpesh) We all know about Ternary operator in C#.NET. I am a big fan of ternary operator and I like to use it instead of using IF..Else. Those who don’t know about ternary operator please go through below link.
.Net 4.0 : Task Parallel Library
(Syam Pinnaka) .Net has provided many different ways of Asynchronous programming over various releases. The latest offering that comes with .Net 4.0 is Task Parallel Library (TPL). TPL comes with various benefits over other Async programming models like IAsyncResult or Event based models.
Handle GridView.OnSorting() and create sorting expression dynamically using LINQ
(Alexander M. Batishchev) The GridView control from ASP.NET 2.0 is great and widely used but has a significant limitation: the sorting event argument GridViewSortEventArg is string-based and is based on values in markup. So it can’t be directly used in programmatic sorting using LINQ.
$_GET and $_POST in PHP
(Vineet Kumar Saini) Using the GET and POST methods, the browser client can send data to the web server. In PHP the GET and POST methods are used to retrieve information from forms, such as user input. Get and Post are methods used to send data to the server. These methods are used for data handling
How to get started with jQuery
(Ryan Boudreaux) Getting started with jQuery is not a difficult task; in fact, it’s much easier than writing your own JavaScript code. However, it too does take some practice to get the feel of how to use it to take web documents to dynamic content.
A LINQ Style Range Generator
(Richard Carr) Language-Integrated Query (LINQ) provides the Enumerable.Range method that generates incrementing sequences of integers. This article describes a similar method that allows the creation of more complex ranges with the repeated application of a function.
