(Ben Nadel) Traditionally, when I’ve needed to load multiple JavaScript files into an application, I’ve used multiple Script tags. This works, but is less than optimal when it comes to load times and organization.
Tag: Development
Adding Custom Functionality to ASP.NET DataViews
(Peter Vogel) The ASP.NET DataViews, when connected to a DataSource, generate all the buttons a user needs to edit, update and delete the data that the DataView displays (assuming that you enable edits, updates and deletes).
How to do custom pagination in the GridView to achieve better performance in case we have large number of data to display?
(SheoNarayan) To do custom pagination in the GridView or to do SEO friendly pagination for the GridView, we can follow this approach.
The Downsides of ASP.NET Session State
(Jono Ward) ASP.NET session state is an undeniably useful tool for dealing with the statelessness of http. But there are draw backs that many developers may not appreciate.
LINQ Outer Joins
One commonly used feature of Language-Integrated Query (LINQ) is the facility to combine two sequences of related data using joins. The standard join operation provides an inner join but with a minor modification can be changed to give a left outer join.
PHP Proxy Patterns: Collections and Classes
(Alejandro Gervasio) In this second part of a three-part tutorial, I add to the existing structure of our sample blog program a host of useful components. These include the classes that handle collections of entities and views, and most importantly, the ones responsible for lazy-loading domain objec
Sequences in FSharp
(Alok Pandey) A sequence represents an ordered series of elements of the same type. Sequences are important when we work with large amounts of data. It is also known as a sequence expression. It is very similar to Lists – except only one element of sequence can be exist in memory at a time. Sequence
JSON Serialization and Deserialization in ASP.NET
(SummiG) JSON is one kind of data format which is designer for running JavaScript on website. At present, JSON is widely used in web. This article focuses on JSON Serialization and Deserialization in ASP.NET, including the brief introduction of JSON, how to serialize and deserialize with ASP.NET and
Create Custom Web Control in ASP. NET
(Sapna) Now we are going to discuss about how to create a custom web control in ASP.NET. How do we create and use them in ASP.NET web site application? As we know, a custom control is a control made by the user for a specific purpose and later we can use it in our application.
Continuation Tasks
The eleventh part of the Parallel Programming in .NET tutorial considers the use of continuation tasks. These are parallel tasks that start automatically when one or more other tasks complete, allowing a chain of dependent tasks to be executed correctly.
