(Pravinkumar Dabade) In ASP.NET, each web control is identified uniquely using the ‘ID’ property of the control. We can access the server controls in the code behind using this ‘ID’ property. However, when the web form with server side controls renders in the form of HTML, the server side ID gets co
Tag: Development
Understanding Data Parallel in the .NET Task Parallel Library
(Jeffrey Juday) Data Parallelism and Task Parallelism are common Parallel Computing forms. Task Parallel Library (TPL) bears the “Task Parallel” name, but where does Data Parallel fit into TPL? How is Data Parallel done in the Task Parallel Library? What does Data Parallel look like in the Task Para
Adding Secure Publishing To The PubNub Realtime Messaging Workflow
(Ben Nadel) Last week, I took a look at PubNub, the cloud-based realtime messaging platform. In my first experiment, I demonstrated that PubNub enabled bi-directional communication directly between client devices within your application.
Understanding ASP.NET MVC Model Binding
(Bipin Joshi) ASP.NET MVC model binding allows you to map HTTP request data with a model. This article discusses how model binding works for various types of models (simple types, complex types, collections etc.). It also shows how to create a custom model binder if situation calls for it.
Search engine friendly URLs in ASP.NET MVC using dynamic routing and a SQL Server database
(Lars-Erik Kindblad) Search engine friendly URLs, also known as rewritten URLs, is a feature where a more logical and readable URL is exposed to the user. An example of such an URL is www.kindblad.com/about.
An Encrypted String Data Type for Visual Studio LightSwitch
(Joe Kunk) In my recent article, “Is Visual Studio LightSwitch the New Access?”, I looked at the suitability of LightSwitch as a replacement tool for departmental applications developed in Microsoft Access.
FluentFilters for ASP.NET MVC 3 – Register global filters by specified conditions
(Dmitry Antonenko) Last year I wrote about FluentFilters and how to use them with ASP.NET MVC 2 to implement the functionality of global filters. With ASP.NET MVC 3 was added native support for global filters.
Converting a LINQ query to PLINQ
(Suprotim Agarwal) PLINQ provides support for Parallel programming and is closely related to the Task Parallel Library. In very simple words, PLINQ enables a query to automatically take advantage of multiple processors.
Using an Excel 2010 Chart in a VB 2010 Form
(Dan Mabbutt) Tom wrote: “Can you give me a “butt-simple” example of reading two points in from an excel spreadsheet and displaying them on a chart in Visual basic 2010? All the examples I see get bogged down in the dumb chart appearance stuff and you can’t see how you just put a couple simple po
.NET Framework: Collections and Generics
(Mark Strawmyer) The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option.
