(Abey George) One of my friends asked me how we can persist the checked state of DataGrid check box columns while paging. That means when a user checks one record in a page (in datagrid) and goes to the next page and selects some records there, when he returns to the previous page we need to keep th
Tag: Development
Enforcing Object Types in PHP: Using the PHP5 instanceof Operator
(Alejandro Gervasio) This is the second installment of the series “Enforcing object types in PHP.” Welcome back. As you’ll surely know, this three-part series goes through the basic concepts of object type enforcement in PHP 4/PHP 5. It explores different approaches for checking types of objects to
Build Office-based apps with a Visual Studio add-in
(Tony Patton) Microsoft’s share of the office productivity suite market is no secret as Microsoft Office dominates the competition. For this reason, it is often desirable to harness the power of the Office suite when developing custom applications. After all, who wants to reinvent the wheel?
Lock the Controls Down on a Page
The following blocks of code will provide you with a method of iterating through all the controls on a page and performing some change on the properties of the control. In this particular example, we wanted to provide a simple means of locking controls down to users who did not have edit permissions
Data Mining Tools: Which One is Best for CRM? Part 2
(Robert A. Nisbet) One way to refer to this wider context of data mining is to include data mining as part of the broader process of knowledge discovery (KD). In addition to data mining activities, KD may also contain some elements that define data extraction from source systems, customer householdi
Using Master Pages in ASP.Net 2.0
(Peter Aitken) Many web sites follow a plan in which most of the pages have certain content in common, such as a header and footer. As the user navigates from page to page, only the content in the main part of the page changes.
Security Steps for Strong Authentication
(Sonu Chauhan) Weak authentication increases the identity spoofing threat. If a user’s logon credentials fall into the wrong hands, an attacker can spoof the user’s identity and gain access to the application. The attacker shares all of the user’s privileges in the application. Credentials must be p
Multithreaded UI Model-View Data Binding
(waveangle) This solution demonstrates a simple model-view pattern for a multithreaded Windows Forms UI in .NET 2.0. I prefer to design the “model” classes for my programs first, and then design the forms around the model. This example shows a couple types of data binding techniques using worker thr
SumColumn: Custom DataGrid Column that automatically shows Sum/Count/Average in DataGrid Footer
(Syed Aziz ur Rahman) A normal requirement in any ASP.Net application is to sum/average up the values in a DataGrid column to the Footer. In this article we will compare the normal methods and later create our own custom DataGrid column “SumColumn”, derived from BoundColumn to avoid repetition of th
A fundamental approach to Database design
(george.p.alexander) I had one of my friends asking me a little assistance for getting his final year Computer Science Project started. He got a requirement from a computer hardware sales store to create an online shopping cart and inventory management system. The project sounded neat. He wanted som