(Suprotim Agarwal) In this article, we will see how to add values of multiple ASP.NET Checkboxes using jQuery. This example could be useful in scenarios where users are asked to select services they would like to avail and each service has a rate displayed – like in a webhosting service. Using jQuer
Tag: Development
Behavioral Design Pattern for .NET: Part 2
(Nipun Tomar) Behavioral Design patterns are the patterns for .Net in which there is a way through which we can pass the request between the chain of objects, or we can say that it defines the manner to communicate between classes and object.
Add Simple Ajax Paging to Grids in ASP.NET MVC
(Chris Bennett) In standard ASP.NET it is very easy to implement a full featured data grid with paging. With the help of an UpdatePanel you can improve the user experience of paging data in grids by taking advantage of Ajax (Asynchromous JavaScript And XML).
When DataTable.Select() Is Slow, Use DataView.FindRows()
(Arno) ADO.NET’s DataTable.Select() comes with a runtime complexity of O(N). This turns into a problem when DataTable contains a lot of rows, and/or when DataTable.Select() is invoked many times.
The Power Of Closures – Deferred Object Bindings In jQuery 1.5
(Ben Nadel) Over the weekend, I started to explore the Deferred objects that were added to jQuery 1.5. Deferred objects are stateful queues that can trigger success and fail event handlers. In a follow-up exploration, I wanted to see if I could use Deferred objects to power asynchronous script loadi
Get Selected Row from ASP.NET MVC 3 WebGrid
(Malcolm Sheridan) Every website has to display data and every website has a Grid control. In ASP.NET MVC 3 there’s the WebGrid, which is part of the Microsoft Web Helpers library. This can be downloaded through NuGet (formerly NuPack). NuGet is a free open source package manager that makes it easy
Using Deferred Objects As An Asynchronous Script Loader In jQuery 1.5
(Ben Nadel) After playing with Deferred Objects for the first time yesterday, I’ve definitely gotten deferred on the brain. I’ve known about deferred objects for a long time and never really understood them; as such, I’m quite eager to wrap my head around exactly what it is that they are capable of
ASP.NET Image to PDF with VB.Net
This tutorial will discuss how to use the PDFSharp library on images. Specifically, it will cover how to do simple JPG to PDF conversion using PDFSharp in VB.NET. This has a lot of applications in ASP.NET implementations, such as converting a document online that contains either a pure image or both
Getting rid of flickering in .NET CF forms with custom drawn controls
(Onkar Singh) .NET Compact Framework doesnt provide builtin double buffering for forms. In case you have multiple custom drawn user controls on a form, loading will mostly show flickr.
Focusing and Selecting the Text in ASP.NET TextBox Controls
(Scott Mitchell) When a browser displays the HTML sent from a web server it parses the received markup into a Document Object Model, or DOM, which models the markup as a hierarchical structure. Each element in the markup – the element, elements, elements, elements, and so on
